Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.23 KB

File metadata and controls

31 lines (22 loc) · 1.23 KB

UpdateCustomerProfileV2409Response

Properties

Name Type Description Notes
message str [optional]
errors List[object] [optional]
status_code int [optional]

Example

from talon_one.models.update_customer_profile_v2409_response import UpdateCustomerProfileV2409Response

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

# convert the object into a dict
update_customer_profile_v2409_response_dict = update_customer_profile_v2409_response_instance.to_dict()
# create an instance of UpdateCustomerProfileV2409Response from a dict
update_customer_profile_v2409_response_from_dict = UpdateCustomerProfileV2409Response.from_dict(update_customer_profile_v2409_response_dict)

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