Skip to content
This repository was archived by the owner on Feb 21, 2025. It is now read-only.

Latest commit

 

History

History
28 lines (20 loc) · 956 Bytes

File metadata and controls

28 lines (20 loc) · 956 Bytes

LinkAccountRequest

Properties

Name Type Description Notes
ids List[str] [optional]

Example

from clientapi_atrocore.models.link_account_request import LinkAccountRequest

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

# convert the object into a dict
link_account_request_dict = link_account_request_instance.to_dict()
# create an instance of LinkAccountRequest from a dict
link_account_request_form_dict = link_account_request.from_dict(link_account_request_dict)

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