You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Unique identifier assigned to the brand by the registry.
[optional] [readonly]
first_name
str
First or given name.
[optional]
last_name
str
Last or Surname.
[optional]
display_name
str
Display or marketing name of the brand.
[optional]
company_name
str
(Required for Non-profit/private/public) Legal company name.
[optional]
phone
str
Valid phone number in e.164 international format.
email
str
Valid email address of brand support contact.
website
str
Brand website URL.
[optional]
optional_attributes
Dict[str, object]
Optional brand attributes. Please refer to GET /enum/optionalAttributeNames for dictionary of optional attribute names.
[optional]
evp_vetting_score
int
External vetting score.
[optional]
Example
fromfreeclimb.models.sms_ten_dlc_partner_campaign_brandimportSMSTenDLCPartnerCampaignBrand# TODO update the JSON string belowjson="{}"# create an instance of SMSTenDLCPartnerCampaignBrand from a JSON stringsms_ten_dlc_partner_campaign_brand_instance=SMSTenDLCPartnerCampaignBrand.from_json(json)
# print the JSON string representation of the objectprint(SMSTenDLCPartnerCampaignBrand.to_json())
# convert the object into a dictsms_ten_dlc_partner_campaign_brand_dict=sms_ten_dlc_partner_campaign_brand_instance.to_dict()
# create an instance of SMSTenDLCPartnerCampaignBrand from a dictsms_ten_dlc_partner_campaign_brand_from_dict=SMSTenDLCPartnerCampaignBrand.from_dict(sms_ten_dlc_partner_campaign_brand_dict)