Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 850 Bytes

File metadata and controls

30 lines (21 loc) · 850 Bytes

BehalfOf

Properties

Name Type Description Notes
name str [optional]
email_address str [optional]

Example

from boldsign.models.behalf_of import BehalfOf

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

# convert the object into a dict
behalf_of_dict = behalf_of_instance.to_dict()
# create an instance of BehalfOf from a dict
behalf_of_from_dict = BehalfOf.from_dict(behalf_of_dict)

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