Class: Vapi::ServerMessageResponseTransferDestinationRequestDestination
- Inherits:
-
Object
- Object
- Vapi::ServerMessageResponseTransferDestinationRequestDestination
- Defined in:
- lib/vapi_server_sdk/types/server_message_response_transfer_destination_request_destination.rb
Overview
This is the destination you’d like the call to be transferred to.
Instance Attribute Summary collapse
- #discriminant ⇒ String readonly
- #member ⇒ Object readonly
Class Method Summary collapse
- .assistant(member:) ⇒ Vapi::ServerMessageResponseTransferDestinationRequestDestination
-
.from_json(json_object:) ⇒ Vapi::ServerMessageResponseTransferDestinationRequestDestination
Deserialize a JSON object to an instance of ServerMessageResponseTransferDestinationRequestDestination.
- .number(member:) ⇒ Vapi::ServerMessageResponseTransferDestinationRequestDestination
- .sip(member:) ⇒ Vapi::ServerMessageResponseTransferDestinationRequestDestination
- .step(member:) ⇒ Vapi::ServerMessageResponseTransferDestinationRequestDestination
-
.validate_raw(obj:) ⇒ Void
Leveraged for Union-type generation, validate_raw attempts to parse the given hash and check each fields type against the current object’s property definitions.
Instance Method Summary collapse
- #initialize(member:, discriminant:) ⇒ Vapi::ServerMessageResponseTransferDestinationRequestDestination constructor
-
#is_a?(obj) ⇒ Boolean
For Union Types, is_a? functionality is delegated to the wrapped member.
- #kind_of? ⇒ Object
-
#to_json(*_args) ⇒ String
For Union Types, to_json functionality is delegated to the wrapped member.
Constructor Details
#initialize(member:, discriminant:) ⇒ Vapi::ServerMessageResponseTransferDestinationRequestDestination
23 24 25 26 |
# File 'lib/vapi_server_sdk/types/server_message_response_transfer_destination_request_destination.rb', line 23 def initialize(member:, discriminant:) @member = member @discriminant = discriminant end |
Instance Attribute Details
#discriminant ⇒ String (readonly)
15 16 17 |
# File 'lib/vapi_server_sdk/types/server_message_response_transfer_destination_request_destination.rb', line 15 def discriminant @discriminant end |
#member ⇒ Object (readonly)
13 14 15 |
# File 'lib/vapi_server_sdk/types/server_message_response_transfer_destination_request_destination.rb', line 13 def member @member end |
Class Method Details
.assistant(member:) ⇒ Vapi::ServerMessageResponseTransferDestinationRequestDestination
100 101 102 |
# File 'lib/vapi_server_sdk/types/server_message_response_transfer_destination_request_destination.rb', line 100 def self.assistant(member:) new(member: member, discriminant: "assistant") end |
.from_json(json_object:) ⇒ Vapi::ServerMessageResponseTransferDestinationRequestDestination
Deserialize a JSON object to an instance of
ServerMessageResponseTransferDestinationRequestDestination
33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 |
# File 'lib/vapi_server_sdk/types/server_message_response_transfer_destination_request_destination.rb', line 33 def self.from_json(json_object:) struct = JSON.parse(json_object, object_class: OpenStruct) member = case struct.type when "assistant" Vapi::TransferDestinationAssistant.from_json(json_object: json_object) when "step" Vapi::TransferDestinationStep.from_json(json_object: json_object) when "number" Vapi::TransferDestinationNumber.from_json(json_object: json_object) when "sip" Vapi::TransferDestinationSip.from_json(json_object: json_object) else Vapi::TransferDestinationAssistant.from_json(json_object: json_object) end new(member: member, discriminant: struct.type) end |
.number(member:) ⇒ Vapi::ServerMessageResponseTransferDestinationRequestDestination
112 113 114 |
# File 'lib/vapi_server_sdk/types/server_message_response_transfer_destination_request_destination.rb', line 112 def self.number(member:) new(member: member, discriminant: "number") end |
.sip(member:) ⇒ Vapi::ServerMessageResponseTransferDestinationRequestDestination
118 119 120 |
# File 'lib/vapi_server_sdk/types/server_message_response_transfer_destination_request_destination.rb', line 118 def self.sip(member:) new(member: member, discriminant: "sip") end |
.step(member:) ⇒ Vapi::ServerMessageResponseTransferDestinationRequestDestination
106 107 108 |
# File 'lib/vapi_server_sdk/types/server_message_response_transfer_destination_request_destination.rb', line 106 def self.step(member:) new(member: member, discriminant: "step") end |
.validate_raw(obj:) ⇒ Void
Leveraged for Union-type generation, validate_raw attempts to parse the given
hash and check each fields type against the current object's property
definitions.
75 76 77 78 79 80 81 82 83 84 85 86 87 88 |
# File 'lib/vapi_server_sdk/types/server_message_response_transfer_destination_request_destination.rb', line 75 def self.validate_raw(obj:) case obj.type when "assistant" Vapi::TransferDestinationAssistant.validate_raw(obj: obj) when "step" Vapi::TransferDestinationStep.validate_raw(obj: obj) when "number" Vapi::TransferDestinationNumber.validate_raw(obj: obj) when "sip" Vapi::TransferDestinationSip.validate_raw(obj: obj) else raise("Passed value matched no type within the union, validation failed.") end end |
Instance Method Details
#is_a?(obj) ⇒ Boolean
For Union Types, is_a? functionality is delegated to the wrapped member.
94 95 96 |
# File 'lib/vapi_server_sdk/types/server_message_response_transfer_destination_request_destination.rb', line 94 def is_a?(obj) @member.is_a?(obj) end |
#kind_of? ⇒ Object
18 |
# File 'lib/vapi_server_sdk/types/server_message_response_transfer_destination_request_destination.rb', line 18 alias kind_of? is_a? |
#to_json(*_args) ⇒ String
For Union Types, to_json functionality is delegated to the wrapped member.
53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 |
# File 'lib/vapi_server_sdk/types/server_message_response_transfer_destination_request_destination.rb', line 53 def to_json(*_args) case @discriminant when "assistant" { **@member.to_json, type: @discriminant }.to_json when "step" { **@member.to_json, type: @discriminant }.to_json when "number" { **@member.to_json, type: @discriminant }.to_json when "sip" { **@member.to_json, type: @discriminant }.to_json else { "type": @discriminant, value: @member }.to_json end @member.to_json end |