Class: Sentdm::Models::ProfileCreateParams::Brand::Compliance
- Inherits:
-
Internal::Type::BaseModel
- Object
- Internal::Type::BaseModel
- Sentdm::Models::ProfileCreateParams::Brand::Compliance
- Defined in:
- lib/sentdm/models/profile_create_params.rb
Overview
Defined Under Namespace
Modules: BrandRelationship, Vertical Classes: DestinationCountry
Instance Attribute Summary collapse
- #brand_relationship ⇒ Symbol, Sentdm::Models::ProfileCreateParams::Brand::Compliance::BrandRelationship
-
#destination_countries ⇒ Array<Sentdm::Models::ProfileCreateParams::Brand::Compliance::DestinationCountry>?
List of destination countries for messaging.
-
#expected_messaging_volume ⇒ String?
Expected daily messaging volume.
-
#is_tcr_application ⇒ Boolean?
Whether this is a TCR (Campaign Registry) application.
-
#notes ⇒ String?
Additional notes about the business or use case.
-
#phone_number_prefix ⇒ String?
Phone number prefix for messaging (e.g., “+1”).
-
#primary_use_case ⇒ String?
Primary messaging use case description.
- #vertical ⇒ Symbol, Sentdm::Models::ProfileCreateParams::Brand::Compliance::Vertical
Class Method Summary collapse
Instance Method Summary collapse
-
#initialize(brand_relationship:, vertical:, destination_countries: nil, expected_messaging_volume: nil, is_tcr_application: nil, notes: nil, phone_number_prefix: nil, primary_use_case: nil) ⇒ Object
constructor
Compliance and TCR information for brand registration.
Methods inherited from Internal::Type::BaseModel
==, #==, #[], coerce, #deconstruct_keys, #deep_to_h, dump, fields, hash, #hash, inherited, inspect, #inspect, known_fields, optional, recursively_to_h, required, #to_h, #to_json, #to_s, to_sorbet_type, #to_yaml
Methods included from Internal::Type::Converter
#coerce, coerce, #dump, dump, #inspect, inspect, meta_info, new_coerce_state, type_info
Methods included from Internal::Util::SorbetRuntimeSupport
#const_missing, #define_sorbet_constant!, #sorbet_constant_defined?, #to_sorbet_type, to_sorbet_type
Constructor Details
#initialize(brand_relationship:, vertical:, destination_countries: nil, expected_messaging_volume: nil, is_tcr_application: nil, notes: nil, phone_number_prefix: nil, primary_use_case: nil) ⇒ Object
Compliance and TCR information for brand registration
|
|
# File 'lib/sentdm/models/profile_create_params.rb', line 305
|
Instance Attribute Details
#brand_relationship ⇒ Symbol, Sentdm::Models::ProfileCreateParams::Brand::Compliance::BrandRelationship
252 253 254 |
# File 'lib/sentdm/models/profile_create_params.rb', line 252 required :brand_relationship, enum: -> { Sentdm::ProfileCreateParams::Brand::Compliance::BrandRelationship }, api_name: :brandRelationship |
#destination_countries ⇒ Array<Sentdm::Models::ProfileCreateParams::Brand::Compliance::DestinationCountry>?
List of destination countries for messaging
265 266 267 268 269 270 |
# File 'lib/sentdm/models/profile_create_params.rb', line 265 optional :destination_countries, -> { Sentdm::Internal::Type::ArrayOf[Sentdm::ProfileCreateParams::Brand::Compliance::DestinationCountry] }, api_name: :destinationCountries, nil?: true |
#expected_messaging_volume ⇒ String?
Expected daily messaging volume
276 |
# File 'lib/sentdm/models/profile_create_params.rb', line 276 optional :expected_messaging_volume, String, api_name: :expectedMessagingVolume, nil?: true |
#is_tcr_application ⇒ Boolean?
Whether this is a TCR (Campaign Registry) application
282 283 284 285 |
# File 'lib/sentdm/models/profile_create_params.rb', line 282 optional :is_tcr_application, Sentdm::Internal::Type::Boolean, api_name: :isTcrApplication, nil?: true |
#notes ⇒ String?
Additional notes about the business or use case
291 |
# File 'lib/sentdm/models/profile_create_params.rb', line 291 optional :notes, String, nil?: true |
#phone_number_prefix ⇒ String?
Phone number prefix for messaging (e.g., “+1”)
297 |
# File 'lib/sentdm/models/profile_create_params.rb', line 297 optional :phone_number_prefix, String, api_name: :phoneNumberPrefix, nil?: true |
#primary_use_case ⇒ String?
Primary messaging use case description
303 |
# File 'lib/sentdm/models/profile_create_params.rb', line 303 optional :primary_use_case, String, api_name: :primaryUseCase, nil?: true |
#vertical ⇒ Symbol, Sentdm::Models::ProfileCreateParams::Brand::Compliance::Vertical
259 |
# File 'lib/sentdm/models/profile_create_params.rb', line 259 required :vertical, enum: -> { Sentdm::ProfileCreateParams::Brand::Compliance::Vertical } |
Class Method Details
.values ⇒ Array<Symbol>
|
|
# File 'lib/sentdm/models/profile_create_params.rb', line 334
|