1# NetConn_NetCapabilities 2 3 4## Overview 5 6Defines network capability sets. 7 8**Since**: 11 9 10**Related module**: [NetConnection](_net_connection.md) 11 12 13## Summary 14 15 16### Member Variables 17 18| Name| Use guide| 19| -------- | -------- | 20| [linkUpBandwidthKbps](#linkupbandwidthkbps) | Uplink bandwidth.| 21| [linkDownBandwidthKbps](#linkdownbandwidthkbps) | Downlink bandwidth.| 22| [netCaps](#netcaps) [NETCONN_MAX_CAP_SIZE] | Network capability list.| 23| [netCapsSize](#netcapssize) | Actual size of the network capability list.| 24| [bearerTypes](#bearertypes) [NETCONN_MAX_BEARER_TYPE_SIZE] | Bearer type list.| 25| [bearerTypesSize](#bearertypessize) | Actual size of the bearer type list.| 26 27 28## Member Variable Description 29 30 31### bearerTypes 32 33``` 34NetConn_NetBearerType NetConn_NetCapabilities::bearerTypes[NETCONN_MAX_BEARER_TYPE_SIZE] 35``` 36 37**Description** 38 39Bearer type list. 40 41 42### bearerTypesSize 43 44``` 45int32_t NetConn_NetCapabilities::bearerTypesSize 46``` 47 48**Description** 49 50Actual size of the bearer type list. 51 52 53### linkDownBandwidthKbps 54 55``` 56uint32_t NetConn_NetCapabilities::linkDownBandwidthKbps 57``` 58 59**Description** 60 61Downlink bandwidth. 62 63 64### linkUpBandwidthKbps 65 66``` 67uint32_t NetConn_NetCapabilities::linkUpBandwidthKbps 68``` 69 70**Description** 71 72Uplink bandwidth. 73 74 75### netCaps 76 77``` 78NetConn_NetCap NetConn_NetCapabilities::netCaps[NETCONN_MAX_CAP_SIZE] 79``` 80 81**Description** 82 83Network capability list. 84 85 86### netCapsSize 87 88``` 89int32_t NetConn_NetCapabilities::netCapsSize 90``` 91 92**Description** 93 94Actual size of the network capability list. 95