You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The device UID this usage data belongs to (only present when aggregate is 'device')
[optional]
device_count
int
the number of devices represented by this data point
[optional]
fleet
str
The fleet UID this usage data belongs to (only present when aggregate is 'fleet')
[optional]
iccid
str
The ICCID of the cellular SIM card (only present when type is 'cellular')
[optional]
psid
str
The PSID (Packet Service ID) of the satellite (or other packet-based device)
[optional]
type
str
The type of connectivity
Example
fromnotehub_py.models.get_data_usage200_response_data_innerimport (
GetDataUsage200ResponseDataInner,
)
# TODO update the JSON string belowjson="{}"# create an instance of GetDataUsage200ResponseDataInner from a JSON stringget_data_usage200_response_data_inner_instance= (
GetDataUsage200ResponseDataInner.from_json(json)
)
# print the JSON string representation of the objectprint(GetDataUsage200ResponseDataInner.to_json())
# convert the object into a dictget_data_usage200_response_data_inner_dict= (
get_data_usage200_response_data_inner_instance.to_dict()
)
# create an instance of GetDataUsage200ResponseDataInner from a dictget_data_usage200_response_data_inner_from_dict= (
GetDataUsage200ResponseDataInner.from_dict(
get_data_usage200_response_data_inner_dict
)
)