Class: Sentdm::Models::ProfileUpdateParams::Brand

Inherits:
Internal::Type::BaseModel show all
Defined in:
lib/sentdm/models/profile_update_params.rb

Defined Under Namespace

Classes: Business, Compliance, Contact

Instance Attribute Summary collapse

Instance Method Summary collapse

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(name:, business_name: nil, email: nil, phone: nil, phone_country_code: nil, role: nil) ⇒ Object

Contact information for brand KYC

Parameters:

  • name (String)

    Primary contact name (required)

  • business_name (String, nil) (defaults to: nil)

    Business/brand name

  • email (String, nil) (defaults to: nil)

    Contact email address

  • phone (String, nil) (defaults to: nil)

    Contact phone number in E.164 format

  • phone_country_code (String, nil) (defaults to: nil)

    Contact phone country code (e.g., “1” for US)

  • role (String, nil) (defaults to: nil)

    Contact’s role in the business



# File 'lib/sentdm/models/profile_update_params.rb', line 270

Instance Attribute Details

#businessSentdm::Models::ProfileUpdateParams::Brand::Business?

Business details and address for brand KYC



268
# File 'lib/sentdm/models/profile_update_params.rb', line 268

optional :business, -> { Sentdm::ProfileUpdateParams::Brand::Business }, nil?: true

#complianceSentdm::Models::ProfileUpdateParams::Brand::Compliance

Compliance and TCR information for brand registration



256
# File 'lib/sentdm/models/profile_update_params.rb', line 256

required :compliance, -> { Sentdm::ProfileUpdateParams::Brand::Compliance }

#contactSentdm::Models::ProfileUpdateParams::Brand::Contact

Contact information for brand KYC



262
# File 'lib/sentdm/models/profile_update_params.rb', line 262

required :contact, -> { Sentdm::ProfileUpdateParams::Brand::Contact }