Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.16 KB

File metadata and controls

32 lines (23 loc) · 1.16 KB

ApplicationResponseSchema

Properties

Name Type Description Notes
id str Application ID
name str Application name
oauth_scopes List[str] OAuth scopes
application_types List[str] Application types

Example

from cloudbeds_pms.models.application_response_schema import ApplicationResponseSchema

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

# convert the object into a dict
application_response_schema_dict = application_response_schema_instance.to_dict()
# create an instance of ApplicationResponseSchema from a dict
application_response_schema_from_dict = ApplicationResponseSchema.from_dict(application_response_schema_dict)

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