Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.29 KB

SubaccountPayload.md

File metadata and controls

33 lines (24 loc) · 1.29 KB

SubaccountPayload

New SubAccount payload

Properties

Name Type Description Notes
email str Proper email address.
password str Current password.
send_activation bool True, if you want to send activation email to this Account to confirm the creation of a new SubAccount. Otherwise, false (SubAccount will immediately be Active). [optional]
settings SubaccountSettingsInfoPayload [optional]

Example

from ElasticEmail.models.subaccount_payload import SubaccountPayload

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

# convert the object into a dict
subaccount_payload_dict = subaccount_payload_instance.to_dict()
# create an instance of SubaccountPayload from a dict
subaccount_payload_from_dict = SubaccountPayload.from_dict(subaccount_payload_dict)

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