Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.44 KB

BulkUpdateTenantTicketsResponse.md

File metadata and controls

32 lines (23 loc) · 1.44 KB

BulkUpdateTenantTicketsResponse

Properties

Name Type Description Notes
data BulkUpdateTenantTicketsRequestMixin Updated tickets data
message str [optional]
error List[BulkUpdateTenantTicketsErrorMixin] Error of the response [optional] [default to []]
status_code int Status code of the response

Example

from onelens_backend_client.models.bulk_update_tenant_tickets_response import BulkUpdateTenantTicketsResponse

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

# convert the object into a dict
bulk_update_tenant_tickets_response_dict = bulk_update_tenant_tickets_response_instance.to_dict()
# create an instance of BulkUpdateTenantTicketsResponse from a dict
bulk_update_tenant_tickets_response_form_dict = bulk_update_tenant_tickets_response.from_dict(bulk_update_tenant_tickets_response_dict)

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