Skip to content

Latest commit

 

History

History
41 lines (32 loc) · 1.84 KB

File metadata and controls

41 lines (32 loc) · 1.84 KB

CompanyForUpdate

A company

Properties

Name Type Description Notes
name str The company name [optional]
domain_name CompanyDomainName [optional]
address CompanyAddress [optional]
employees int Number of employees in the company [optional]
linkedin_link CompanyLinkedinLink [optional]
x_link CompanyXLink [optional]
annual_recurring_revenue CompanyAnnualRecurringRevenue [optional]
ideal_customer_profile bool Ideal Customer Profile: Indicates whether the company is the most suitable and valuable customer for you [optional]
position float Company record position [optional]
created_by AttachmentCreatedBy [optional]
updated_by AttachmentUpdatedBy [optional]
account_owner_id UUID [optional]

Example

from twentycrm_client.models.company_for_update import CompanyForUpdate

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

# convert the object into a dict
company_for_update_dict = company_for_update_instance.to_dict()
# create an instance of CompanyForUpdate from a dict
company_for_update_from_dict = CompanyForUpdate.from_dict(company_for_update_dict)

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