Module: Telnyx::Models::EnterpriseUpdateParams::Industry

Extended by:
Internal::Type::Enum
Defined in:
lib/telnyx/models/enterprise_update_params.rb

Constant Summary collapse

ACCOUNTING =
:accounting
FINANCE =
:finance
BILLING =
:billing
COLLECTIONS =
:collections
BUSINESS =
:business
CHARITY =
:charity
NONPROFIT =
:nonprofit
COMMUNICATIONS =
:communications
TELECOM =
:telecom
CUSTOMER_SERVICE =
:"customer service"
SUPPORT =
:support
DELIVERY =
:delivery
SHIPPING =
:shipping
LOGISTICS =
:logistics
EDUCATION =
:education
FINANCIAL =
:financial
BANKING =
:banking
GOVERNMENT =
:government
PUBLIC =
:public
HEALTHCARE =
:healthcare
HEALTH =
:health
PHARMACY =
:pharmacy
MEDICAL =
:medical
INSURANCE =
:insurance
:legal
LAW =
:law
NOTIFICATIONS =
:notifications
SCHEDULING =
:scheduling
REAL_ESTATE =
:"real estate"
PROPERTY =
:property
RETAIL =
:retail
ECOMMERCE =
:ecommerce
SALES =
:sales
MARKETING =
:marketing
SOFTWARE =
:software
TECHNOLOGY =
:technology
TECH =
:tech
MEDIA =
:media
SURVEYS =
:surveys
MARKET_RESEARCH =
:"market research"
TRAVEL =
:travel
HOSPITALITY =
:hospitality
HOTEL =
:hotel

Class Method Summary collapse

Instance Method Summary collapse

Methods included from Internal::Type::Enum

==, ===, coerce, dump, hash, inspect, to_sorbet_type, values

Methods included from Internal::Util::SorbetRuntimeSupport

#const_missing, #define_sorbet_constant!, #sorbet_constant_defined?, #to_sorbet_type, to_sorbet_type

Methods included from Internal::Type::Converter

#coerce, coerce, #dump, dump, #inspect, inspect, meta_info, new_coerce_state, type_info

Class Method Details

.valuesArray<Symbol>

Returns:

  • (Array<Symbol>)


# File 'lib/telnyx/models/enterprise_update_params.rb', line 188

Instance Method Details

#initialize(enterprise_id:, billing_address: nil, billing_contact: nil, corporate_registration_number: nil, customer_reference: nil, doing_business_as: nil, dun_bradstreet_number: nil, fein: nil, industry: nil, jurisdiction_of_incorporation: nil, legal_name: nil, number_of_employees: nil, organization_contact: nil, organization_legal_type: nil, organization_physical_address: nil, primary_business_domain_sic_code: nil, professional_license_number: nil, website: nil, request_options: {}) ⇒ Object

Parameters:

  • enterprise_id (String)
  • billing_address (Telnyx::Models::BillingAddress) (defaults to: nil)
  • billing_contact (Telnyx::Models::BillingContact) (defaults to: nil)
  • corporate_registration_number (String, nil) (defaults to: nil)
  • customer_reference (String) (defaults to: nil)
  • doing_business_as (String) (defaults to: nil)
  • dun_bradstreet_number (String, nil) (defaults to: nil)
  • fein (String) (defaults to: nil)
  • industry (Symbol, Telnyx::Models::EnterpriseUpdateParams::Industry) (defaults to: nil)
  • jurisdiction_of_incorporation (String) (defaults to: nil)

    Updated state/province/country of incorporation. Optional on update.

  • legal_name (String) (defaults to: nil)

    Legal name of the enterprise.

  • number_of_employees (String) (defaults to: nil)
  • organization_contact (Telnyx::Models::OrganizationContact) (defaults to: nil)
  • organization_legal_type (String) (defaults to: nil)
  • organization_physical_address (Telnyx::Models::PhysicalAddress) (defaults to: nil)
  • primary_business_domain_sic_code (String, nil) (defaults to: nil)
  • professional_license_number (String, nil) (defaults to: nil)
  • website (String) (defaults to: nil)
  • request_options (Telnyx::RequestOptions, Hash{Symbol=>Object}) (defaults to: {})


141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
# File 'lib/telnyx/models/enterprise_update_params.rb', line 141

module Industry
  extend Telnyx::Internal::Type::Enum

  ACCOUNTING = :accounting
  FINANCE = :finance
  BILLING = :billing
  COLLECTIONS = :collections
  BUSINESS = :business
  CHARITY = :charity
  NONPROFIT = :nonprofit
  COMMUNICATIONS = :communications
  TELECOM = :telecom
  CUSTOMER_SERVICE = :"customer service"
  SUPPORT = :support
  DELIVERY = :delivery
  SHIPPING = :shipping
  LOGISTICS = :logistics
  EDUCATION = :education
  FINANCIAL = :financial
  BANKING = :banking
  GOVERNMENT = :government
  PUBLIC = :public
  HEALTHCARE = :healthcare
  HEALTH = :health
  PHARMACY = :pharmacy
  MEDICAL = :medical
  INSURANCE = :insurance
  LEGAL = :legal
  LAW = :law
  NOTIFICATIONS = :notifications
  SCHEDULING = :scheduling
  REAL_ESTATE = :"real estate"
  PROPERTY = :property
  RETAIL = :retail
  ECOMMERCE = :ecommerce
  SALES = :sales
  MARKETING = :marketing
  SOFTWARE = :software
  TECHNOLOGY = :technology
  TECH = :tech
  MEDIA = :media
  SURVEYS = :surveys
  MARKET_RESEARCH = :"market research"
  TRAVEL = :travel
  HOSPITALITY = :hospitality
  HOTEL = :hotel

  # @!method self.values
  #   @return [Array<Symbol>]
end