Class: Telnyx::Models::AI::AssistantTool::Refer::Refer::Target
- Inherits:
-
Internal::Type::BaseModel
- Object
- Internal::Type::BaseModel
- Telnyx::Models::AI::AssistantTool::Refer::Refer::Target
- Defined in:
- lib/telnyx/models/ai/assistant_tool.rb
Instance Attribute Summary collapse
-
#name ⇒ String
The name of the target.
-
#sip_address ⇒ String
The SIP URI to which the call will be referred.
-
#sip_auth_password ⇒ String?
SIP Authentication password used for SIP challenges.
-
#sip_auth_username ⇒ String?
SIP Authentication username used for SIP challenges.
Instance Method Summary collapse
-
#initialize(targets:, custom_headers: nil, sip_headers: nil) ⇒ Object
constructor
Some parameter documentations has been truncated, see Telnyx::Models::AI::AssistantTool::Refer::Refer for more details.
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(targets:, custom_headers: nil, sip_headers: nil) ⇒ Object
Some parameter documentations has been truncated, see Telnyx::Models::AI::AssistantTool::Refer::Refer for more details.
679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 |
# File 'lib/telnyx/models/ai/assistant_tool.rb', line 679 class Target < Telnyx::Internal::Type::BaseModel # @!attribute name # The name of the target. # # @return [String] required :name, String # @!attribute sip_address # The SIP URI to which the call will be referred. # # @return [String] required :sip_address, String # @!attribute sip_auth_password # SIP Authentication password used for SIP challenges. # # @return [String, nil] optional :sip_auth_password, String # @!attribute sip_auth_username # SIP Authentication username used for SIP challenges. # # @return [String, nil] optional :sip_auth_username, String # @!method initialize(name:, sip_address:, sip_auth_password: nil, sip_auth_username: nil) # @param name [String] The name of the target. # # @param sip_address [String] The SIP URI to which the call will be referred. # # @param sip_auth_password [String] SIP Authentication password used for SIP challenges. # # @param sip_auth_username [String] SIP Authentication username used for SIP challenges. end |
Instance Attribute Details
#name ⇒ String
The name of the target.
684 |
# File 'lib/telnyx/models/ai/assistant_tool.rb', line 684 required :name, String |
#sip_address ⇒ String
The SIP URI to which the call will be referred.
690 |
# File 'lib/telnyx/models/ai/assistant_tool.rb', line 690 required :sip_address, String |
#sip_auth_password ⇒ String?
SIP Authentication password used for SIP challenges.
696 |
# File 'lib/telnyx/models/ai/assistant_tool.rb', line 696 optional :sip_auth_password, String |
#sip_auth_username ⇒ String?
SIP Authentication username used for SIP challenges.
702 |
# File 'lib/telnyx/models/ai/assistant_tool.rb', line 702 optional :sip_auth_username, String |