Skip to content

Latest commit

 

History

History
35 lines (26 loc) · 1.34 KB

UpdateOtherProfileRequestAddress.md

File metadata and controls

35 lines (26 loc) · 1.34 KB

UpdateOtherProfileRequestAddress

The new address for the user.

Properties

Name Type Description Notes
formatted str [optional]
street_address str [optional]
locality str [optional]
region str [optional]
postal_code str [optional]
country str [optional]

Example

from py_logto.models.update_other_profile_request_address import UpdateOtherProfileRequestAddress

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

# convert the object into a dict
update_other_profile_request_address_dict = update_other_profile_request_address_instance.to_dict()
# create an instance of UpdateOtherProfileRequestAddress from a dict
update_other_profile_request_address_from_dict = UpdateOtherProfileRequestAddress.from_dict(update_other_profile_request_address_dict)

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