Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.1 KB

File metadata and controls

30 lines (21 loc) · 1.1 KB

GatewayBillingLog200Response

Properties

Name Type Description Notes
success bool [optional]
logged_units int [optional]

Example

from aerostack.models.gateway_billing_log200_response import GatewayBillingLog200Response

# TODO update the JSON string below
json = "{}"
# create an instance of GatewayBillingLog200Response from a JSON string
gateway_billing_log200_response_instance = GatewayBillingLog200Response.from_json(json)
# print the JSON string representation of the object
print GatewayBillingLog200Response.to_json()

# convert the object into a dict
gateway_billing_log200_response_dict = gateway_billing_log200_response_instance.to_dict()
# create an instance of GatewayBillingLog200Response from a dict
gateway_billing_log200_response_form_dict = gateway_billing_log200_response.from_dict(gateway_billing_log200_response_dict)

[Back to Model list] [Back to API list] [Back to README]