Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.12 KB

UpdateResourceRequest.md

File metadata and controls

31 lines (22 loc) · 1.12 KB

UpdateResourceRequest

Properties

Name Type Description Notes
tenant_id str [optional]
name str The updated name of the resource. [optional]
access_token_ttl float The updated access token TTL in seconds. [optional]

Example

from py_logto.models.update_resource_request import UpdateResourceRequest

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

# convert the object into a dict
update_resource_request_dict = update_resource_request_instance.to_dict()
# create an instance of UpdateResourceRequest from a dict
update_resource_request_from_dict = UpdateResourceRequest.from_dict(update_resource_request_dict)

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