Class: Vapi::ClientInboundMessageMessage
- Inherits:
-
Object
- Object
- Vapi::ClientInboundMessageMessage
- Defined in:
- lib/vapi_server_sdk/types/client_inbound_message_message.rb
Overview
These are the messages that can be sent from client-side SDKs to control the
call.
Instance Attribute Summary collapse
- #discriminant ⇒ String readonly
- #member ⇒ Object readonly
Class Method Summary collapse
- .add_message(member:) ⇒ Vapi::ClientInboundMessageMessage
- .control(member:) ⇒ Vapi::ClientInboundMessageMessage
-
.from_json(json_object:) ⇒ Vapi::ClientInboundMessageMessage
Deserialize a JSON object to an instance of ClientInboundMessageMessage.
- .say(member:) ⇒ Vapi::ClientInboundMessageMessage
-
.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::ClientInboundMessageMessage 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::ClientInboundMessageMessage
23 24 25 26 |
# File 'lib/vapi_server_sdk/types/client_inbound_message_message.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/client_inbound_message_message.rb', line 15 def discriminant @discriminant end |
#member ⇒ Object (readonly)
13 14 15 |
# File 'lib/vapi_server_sdk/types/client_inbound_message_message.rb', line 13 def member @member end |
Class Method Details
.add_message(member:) ⇒ Vapi::ClientInboundMessageMessage
93 94 95 |
# File 'lib/vapi_server_sdk/types/client_inbound_message_message.rb', line 93 def self.(member:) new(member: member, discriminant: "add-message") end |
.control(member:) ⇒ Vapi::ClientInboundMessageMessage
99 100 101 |
# File 'lib/vapi_server_sdk/types/client_inbound_message_message.rb', line 99 def self.control(member:) new(member: member, discriminant: "control") end |
.from_json(json_object:) ⇒ Vapi::ClientInboundMessageMessage
Deserialize a JSON object to an instance of ClientInboundMessageMessage
32 33 34 35 36 37 38 39 40 41 42 43 44 45 |
# File 'lib/vapi_server_sdk/types/client_inbound_message_message.rb', line 32 def self.from_json(json_object:) struct = JSON.parse(json_object, object_class: OpenStruct) member = case struct.type when "add-message" Vapi::ClientInboundMessageAddMessage.from_json(json_object: json_object) when "control" Vapi::ClientInboundMessageControl.from_json(json_object: json_object) when "say" Vapi::ClientInboundMessageSay.from_json(json_object: json_object) else Vapi::ClientInboundMessageAddMessage.from_json(json_object: json_object) end new(member: member, discriminant: struct.type) end |
.say(member:) ⇒ Vapi::ClientInboundMessageMessage
105 106 107 |
# File 'lib/vapi_server_sdk/types/client_inbound_message_message.rb', line 105 def self.say(member:) new(member: member, discriminant: "say") 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.
70 71 72 73 74 75 76 77 78 79 80 81 |
# File 'lib/vapi_server_sdk/types/client_inbound_message_message.rb', line 70 def self.validate_raw(obj:) case obj.type when "add-message" Vapi::ClientInboundMessageAddMessage.validate_raw(obj: obj) when "control" Vapi::ClientInboundMessageControl.validate_raw(obj: obj) when "say" Vapi::ClientInboundMessageSay.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.
87 88 89 |
# File 'lib/vapi_server_sdk/types/client_inbound_message_message.rb', line 87 def is_a?(obj) @member.is_a?(obj) end |
#kind_of? ⇒ Object
18 |
# File 'lib/vapi_server_sdk/types/client_inbound_message_message.rb', line 18 alias kind_of? is_a? |
#to_json(*_args) ⇒ String
For Union Types, to_json functionality is delegated to the wrapped member.
50 51 52 53 54 55 56 57 58 59 60 61 62 |
# File 'lib/vapi_server_sdk/types/client_inbound_message_message.rb', line 50 def to_json(*_args) case @discriminant when "add-message" { **@member.to_json, type: @discriminant }.to_json when "control" { **@member.to_json, type: @discriminant }.to_json when "say" { **@member.to_json, type: @discriminant }.to_json else { "type": @discriminant, value: @member }.to_json end @member.to_json end |