Skip to content

Latest commit

 

History

History
29 lines (21 loc) · 1.18 KB

PassbookConfigurationResponse.md

File metadata and controls

29 lines (21 loc) · 1.18 KB

PassbookConfigurationResponse

Properties

Name Type Description Notes
passbook_configuration PassbookConfiguration [optional]
errors Dict[str, str] [optional]

Example

from sparkfly_client.models.passbook_configuration_response import PassbookConfigurationResponse

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

# convert the object into a dict
passbook_configuration_response_dict = passbook_configuration_response_instance.to_dict()
# create an instance of PassbookConfigurationResponse from a dict
passbook_configuration_response_form_dict = passbook_configuration_response.from_dict(passbook_configuration_response_dict)

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