Class: Revox::Models::AssistantCreateParams::TransferDestination

Inherits:
Internal::Type::BaseModel show all
Defined in:
lib/revox/models/assistant_create_params.rb,
sig/revox/models/assistant_create_params.rbs

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

#initializeTransferDestination

Returns a new instance of TransferDestination.

Parameters:

  • label: (String)
  • phone_number: (String)


1072
# File 'sig/revox/models/assistant_create_params.rbs', line 1072

def initialize: (label: String, phone_number: String) -> void

Instance Attribute Details

#labelString

Human-meaningful name for this destination (e.g. "Sales"). The assistant's prompt refers to these labels when describing who to transfer to.

Parameters:

  • value (String)

Returns:

  • (String)


1300
# File 'lib/revox/models/assistant_create_params.rb', line 1300

required :label, String

#phone_numberString

Destination phone number in E.164 format (e.g. +1234567890).

Parameters:

  • value (String)

Returns:

  • (String)


1306
# File 'lib/revox/models/assistant_create_params.rb', line 1306

required :phone_number, String

Instance Method Details

#to_hash{ label: String, phone_number: String }

Returns:

  • ({ label: String, phone_number: String })


1074
# File 'sig/revox/models/assistant_create_params.rbs', line 1074

def to_hash: -> { label: String, phone_number: String }