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

Latest commit

 

History

History
29 lines (21 loc) · 1.06 KB

File metadata and controls

29 lines (21 loc) · 1.06 KB

MassUpdateAccountRequest

Properties

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

Example

from clientapi_atrocore.models.mass_update_account_request import MassUpdateAccountRequest

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

# convert the object into a dict
mass_update_account_request_dict = mass_update_account_request_instance.to_dict()
# create an instance of MassUpdateAccountRequest from a dict
mass_update_account_request_form_dict = mass_update_account_request.from_dict(mass_update_account_request_dict)

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