Skip to content

Latest commit

 

History

History
38 lines (32 loc) · 1.5 KB

File metadata and controls

38 lines (32 loc) · 1.5 KB

Freeclimb::SMSTenDLCPartnerCampaignBrand

Properties

Name Type Description Notes
account_id String ID of the account that created this Queue. [optional]
brand_id String Unique identifier assigned to the brand by the registry. [optional][readonly]
first_name String First or given name. [optional]
last_name String Last or Surname. [optional]
display_name String Display or marketing name of the brand. [optional]
company_name String (Required for Non-profit/private/public) Legal company name. [optional]
phone String Valid phone number in e.164 international format.
email String Valid email address of brand support contact.
website String Brand website URL. [optional]
optional_attributes Hash<String, Object> Optional brand attributes. Please refer to GET /enum/optionalAttributeNames for dictionary of optional attribute names. [optional]
evp_vetting_score Integer External vetting score. [optional]

Example

require 'freeclimb'

instance = Freeclimb::SMSTenDLCPartnerCampaignBrand.new(
  account_id: null,
  brand_id: null,
  first_name: John,
  last_name: Doe,
  display_name: ABC Mobile,
  company_name: ABC Inc.,
  phone: +12024567890,
  email: null,
  website: http://www.abcmobile.com,
  optional_attributes: null,
  evp_vetting_score: null
)