Organization

Properties

NameTypeDescriptionNotes
idfloat
created_atdatetime
updated_atdatetime
namestr
slugstr[optional]
phone_numberstr[optional]
streetstr[optional]
citystr[optional]
postal_codestr[optional]
countrystr[optional]
is_activebool
usersobject
templatesobject
documentsobject
variablesobject

Example

from pdf_generator_client.models.organization import Organization

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

# convert the object into a dict
organization_dict = organization_instance.to_dict()
# create an instance of Organization from a dict
organization_from_dict = Organization.from_dict(organization_dict)

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