Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1.1 KB

File metadata and controls

29 lines (20 loc) · 1.1 KB

PostItemsResponseSchema

Properties

Name Type Description Notes
data List[PostedItemResponseSchema] Array of posted item results, one for each item in the request

Example

from cloudbeds_pms.models.post_items_response_schema import PostItemsResponseSchema

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

# convert the object into a dict
post_items_response_schema_dict = post_items_response_schema_instance.to_dict()
# create an instance of PostItemsResponseSchema from a dict
post_items_response_schema_from_dict = PostItemsResponseSchema.from_dict(post_items_response_schema_dict)

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