Skip to content

Latest commit

 

History

History
36 lines (27 loc) · 1.48 KB

UpdateTenantTicketRequestMixin.md

File metadata and controls

36 lines (27 loc) · 1.48 KB

UpdateTenantTicketRequestMixin

Properties

Name Type Description Notes
ticket_id str The unique identifier of the ticket
status Status1 [optional]
details Details2 [optional]
entity_attributes object [optional]
monthly_unblended_cost float [optional]
cost_impact float [optional]
last_run_id str [optional]
last_run_at datetime [optional]

Example

from onelens_backend_client.models.update_tenant_ticket_request_mixin import UpdateTenantTicketRequestMixin

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

# convert the object into a dict
update_tenant_ticket_request_mixin_dict = update_tenant_ticket_request_mixin_instance.to_dict()
# create an instance of UpdateTenantTicketRequestMixin from a dict
update_tenant_ticket_request_mixin_form_dict = update_tenant_ticket_request_mixin.from_dict(update_tenant_ticket_request_mixin_dict)

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