Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1.13 KB

File metadata and controls

29 lines (20 loc) · 1.13 KB

AddonsCreateBusinessAddonResponse

Properties

Name Type Description Notes
id str [optional]

Example

from kenar_api_client.models.addons_create_business_addon_response import AddonsCreateBusinessAddonResponse

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

# convert the object into a dict
addons_create_business_addon_response_dict = addons_create_business_addon_response_instance.to_dict()
# create an instance of AddonsCreateBusinessAddonResponse from a dict
addons_create_business_addon_response_from_dict = AddonsCreateBusinessAddonResponse.from_dict(addons_create_business_addon_response_dict)

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