Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1.01 KB

CreateUserAsset200Response.md

File metadata and controls

29 lines (20 loc) · 1.01 KB

CreateUserAsset200Response

Properties

Name Type Description Notes
url str

Example

from py_logto.models.create_user_asset200_response import CreateUserAsset200Response

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

# convert the object into a dict
create_user_asset200_response_dict = create_user_asset200_response_instance.to_dict()
# create an instance of CreateUserAsset200Response from a dict
create_user_asset200_response_from_dict = CreateUserAsset200Response.from_dict(create_user_asset200_response_dict)

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