Class: Vapi::ServerMessageStatusUpdateDestination
- Inherits:
-
Object
- Object
- Vapi::ServerMessageStatusUpdateDestination
- Defined in:
- lib/vapi_server_sdk/types/server_message_status_update_destination.rb
Overview
This is the destination the call is being transferred to. This is only sent if
the status is "forwarding".
Instance Attribute Summary collapse
- #discriminant ⇒ String readonly
- #member ⇒ Object readonly
Class Method Summary collapse
-
.from_json(json_object:) ⇒ Vapi::ServerMessageStatusUpdateDestination
Deserialize a JSON object to an instance of ServerMessageStatusUpdateDestination.
- .number(member:) ⇒ Vapi::ServerMessageStatusUpdateDestination
- .sip(member:) ⇒ Vapi::ServerMessageStatusUpdateDestination
-
.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::ServerMessageStatusUpdateDestination 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::ServerMessageStatusUpdateDestination
22 23 24 25 |
# File 'lib/vapi_server_sdk/types/server_message_status_update_destination.rb', line 22 def initialize(member:, discriminant:) @member = member @discriminant = discriminant end |
Instance Attribute Details
#discriminant ⇒ String (readonly)
14 15 16 |
# File 'lib/vapi_server_sdk/types/server_message_status_update_destination.rb', line 14 def discriminant @discriminant end |
#member ⇒ Object (readonly)
12 13 14 |
# File 'lib/vapi_server_sdk/types/server_message_status_update_destination.rb', line 12 def member @member end |
Class Method Details
.from_json(json_object:) ⇒ Vapi::ServerMessageStatusUpdateDestination
Deserialize a JSON object to an instance of ServerMessageStatusUpdateDestination
31 32 33 34 35 36 37 38 39 40 41 42 |
# File 'lib/vapi_server_sdk/types/server_message_status_update_destination.rb', line 31 def self.from_json(json_object:) struct = JSON.parse(json_object, object_class: OpenStruct) member = case struct.type when "number" Vapi::TransferDestinationNumber.from_json(json_object: json_object) when "sip" Vapi::TransferDestinationSip.from_json(json_object: json_object) else Vapi::TransferDestinationNumber.from_json(json_object: json_object) end new(member: member, discriminant: struct.type) end |
.number(member:) ⇒ Vapi::ServerMessageStatusUpdateDestination
86 87 88 |
# File 'lib/vapi_server_sdk/types/server_message_status_update_destination.rb', line 86 def self.number(member:) new(member: member, discriminant: "number") end |
.sip(member:) ⇒ Vapi::ServerMessageStatusUpdateDestination
92 93 94 |
# File 'lib/vapi_server_sdk/types/server_message_status_update_destination.rb', line 92 def self.sip(member:) new(member: member, discriminant: "sip") 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.
65 66 67 68 69 70 71 72 73 74 |
# File 'lib/vapi_server_sdk/types/server_message_status_update_destination.rb', line 65 def self.validate_raw(obj:) case obj.type 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.
80 81 82 |
# File 'lib/vapi_server_sdk/types/server_message_status_update_destination.rb', line 80 def is_a?(obj) @member.is_a?(obj) end |
#kind_of? ⇒ Object
17 |
# File 'lib/vapi_server_sdk/types/server_message_status_update_destination.rb', line 17 alias kind_of? is_a? |
#to_json(*_args) ⇒ String
For Union Types, to_json functionality is delegated to the wrapped member.
47 48 49 50 51 52 53 54 55 56 57 |
# File 'lib/vapi_server_sdk/types/server_message_status_update_destination.rb', line 47 def to_json(*_args) case @discriminant 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 |