Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.11 KB

File metadata and controls

31 lines (22 loc) · 1.11 KB

SystemFeatureResponseSchema

System feature information

Properties

Name Type Description Notes
name str Feature name
version str Feature version

Example

from cloudbeds_pms.models.system_feature_response_schema import SystemFeatureResponseSchema

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

# convert the object into a dict
system_feature_response_schema_dict = system_feature_response_schema_instance.to_dict()
# create an instance of SystemFeatureResponseSchema from a dict
system_feature_response_schema_from_dict = SystemFeatureResponseSchema.from_dict(system_feature_response_schema_dict)

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