A Userstaged Object
Name | Type | Description | Notes |
---|---|---|---|
pki_userstaged_id | int | The unique ID of the Userstaged | |
fki_email_id | int | The unique ID of the Email | |
s_email_address | str | The email address. | |
s_userstaged_firstname | str | The firstname of the Userstaged | |
s_userstaged_lastname | str | The lastname of the Userstaged | |
s_userstaged_externalid | str | The externalid of the Userstaged |
from eZmaxApi.models.userstaged_response_compound import UserstagedResponseCompound
# TODO update the JSON string below
json = "{}"
# create an instance of UserstagedResponseCompound from a JSON string
userstaged_response_compound_instance = UserstagedResponseCompound.from_json(json)
# print the JSON string representation of the object
print(UserstagedResponseCompound.to_json())
# convert the object into a dict
userstaged_response_compound_dict = userstaged_response_compound_instance.to_dict()
# create an instance of UserstagedResponseCompound from a dict
userstaged_response_compound_form_dict = userstaged_response_compound.from_dict(userstaged_response_compound_dict)