Class: Sentdm::Models::ProfileUpdateParams::Brand::Compliance
- Inherits:
-
Internal::Type::BaseModel
- Object
- Internal::Type::BaseModel
- Sentdm::Models::ProfileUpdateParams::Brand::Compliance
- Defined in:
- lib/sentdm/models/profile_update_params.rb
Overview
Defined Under Namespace
Modules: BrandRelationship, Vertical Classes: DestinationCountry
Instance Attribute Summary collapse
- #brand_relationship ⇒ Symbol, Sentdm::Models::ProfileUpdateParams::Brand::Compliance::BrandRelationship
-
#destination_countries ⇒ Array<Sentdm::Models::ProfileUpdateParams::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::ProfileUpdateParams::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_update_params.rb', line 337
|
Instance Attribute Details
#brand_relationship ⇒ Symbol, Sentdm::Models::ProfileUpdateParams::Brand::Compliance::BrandRelationship
284 285 286 |
# File 'lib/sentdm/models/profile_update_params.rb', line 284 required :brand_relationship, enum: -> { Sentdm::ProfileUpdateParams::Brand::Compliance::BrandRelationship }, api_name: :brandRelationship |
#destination_countries ⇒ Array<Sentdm::Models::ProfileUpdateParams::Brand::Compliance::DestinationCountry>?
List of destination countries for messaging
297 298 299 300 301 302 |
# File 'lib/sentdm/models/profile_update_params.rb', line 297 optional :destination_countries, -> { Sentdm::Internal::Type::ArrayOf[Sentdm::ProfileUpdateParams::Brand::Compliance::DestinationCountry] }, api_name: :destinationCountries, nil?: true |
#expected_messaging_volume ⇒ String?
Expected daily messaging volume
308 |
# File 'lib/sentdm/models/profile_update_params.rb', line 308 optional :expected_messaging_volume, String, api_name: :expectedMessagingVolume, nil?: true |
#is_tcr_application ⇒ Boolean?
Whether this is a TCR (Campaign Registry) application
314 315 316 317 |
# File 'lib/sentdm/models/profile_update_params.rb', line 314 optional :is_tcr_application, Sentdm::Internal::Type::Boolean, api_name: :isTcrApplication, nil?: true |
#notes ⇒ String?
Additional notes about the business or use case
323 |
# File 'lib/sentdm/models/profile_update_params.rb', line 323 optional :notes, String, nil?: true |
#phone_number_prefix ⇒ String?
Phone number prefix for messaging (e.g., “+1”)
329 |
# File 'lib/sentdm/models/profile_update_params.rb', line 329 optional :phone_number_prefix, String, api_name: :phoneNumberPrefix, nil?: true |
#primary_use_case ⇒ String?
Primary messaging use case description
335 |
# File 'lib/sentdm/models/profile_update_params.rb', line 335 optional :primary_use_case, String, api_name: :primaryUseCase, nil?: true |
#vertical ⇒ Symbol, Sentdm::Models::ProfileUpdateParams::Brand::Compliance::Vertical
291 |
# File 'lib/sentdm/models/profile_update_params.rb', line 291 required :vertical, enum: -> { Sentdm::ProfileUpdateParams::Brand::Compliance::Vertical } |
Class Method Details
.values ⇒ Array<Symbol>
|
|
# File 'lib/sentdm/models/profile_update_params.rb', line 366
|