Skip to content

Latest commit

 

History

History
35 lines (26 loc) · 1.42 KB

UpdateTenantTicketRequest.md

File metadata and controls

35 lines (26 loc) · 1.42 KB

UpdateTenantTicketRequest

Properties

Name Type Description Notes
status Status1 [optional]
assignment TicketAssignment [optional]
details Details2 [optional]
entity_attributes object [optional]
monthly_unblended_cost float [optional]
ticket_id str The unique identifier of the ticket
tenant_id str The unique identifier of the tenant

Example

from onelens_backend_client.models.update_tenant_ticket_request import UpdateTenantTicketRequest

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

# convert the object into a dict
update_tenant_ticket_request_dict = update_tenant_ticket_request_instance.to_dict()
# create an instance of UpdateTenantTicketRequest from a dict
update_tenant_ticket_request_form_dict = update_tenant_ticket_request.from_dict(update_tenant_ticket_request_dict)

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