Class: Vapi::ClientInboundMessage
- Inherits:
-
Object
- Object
- Vapi::ClientInboundMessage
- Defined in:
- lib/vapi_server_sdk/types/client_inbound_message.rb
Constant Summary collapse
- OMIT =
Object.new
Instance Attribute Summary collapse
-
#additional_properties ⇒ OpenStruct
readonly
Additional properties unmapped to the current class definition.
-
#message ⇒ Vapi::ClientInboundMessageMessage
readonly
These are the messages that can be sent from client-side SDKs to control the call.
Class Method Summary collapse
-
.from_json(json_object:) ⇒ Vapi::ClientInboundMessage
Deserialize a JSON object to an instance of ClientInboundMessage.
-
.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(message:, additional_properties: nil) ⇒ Vapi::ClientInboundMessage constructor
-
#to_json(*_args) ⇒ String
Serialize an instance of ClientInboundMessage to a JSON object.
Constructor Details
#initialize(message:, additional_properties: nil) ⇒ Vapi::ClientInboundMessage
24 25 26 27 28 |
# File 'lib/vapi_server_sdk/types/client_inbound_message.rb', line 24 def initialize(message:, additional_properties: nil) @message = @additional_properties = additional_properties @_field_set = { "message": } end |
Instance Attribute Details
#additional_properties ⇒ OpenStruct (readonly)
Returns Additional properties unmapped to the current class definition.
13 14 15 |
# File 'lib/vapi_server_sdk/types/client_inbound_message.rb', line 13 def additional_properties @additional_properties end |
#message ⇒ Vapi::ClientInboundMessageMessage (readonly)
Returns These are the messages that can be sent from client-side SDKs to control the call.
11 12 13 |
# File 'lib/vapi_server_sdk/types/client_inbound_message.rb', line 11 def @message end |
Class Method Details
.from_json(json_object:) ⇒ Vapi::ClientInboundMessage
Deserialize a JSON object to an instance of ClientInboundMessage
34 35 36 37 38 39 40 41 42 43 44 |
# File 'lib/vapi_server_sdk/types/client_inbound_message.rb', line 34 def self.from_json(json_object:) struct = JSON.parse(json_object, object_class: OpenStruct) parsed_json = JSON.parse(json_object) if parsed_json["message"].nil? = nil else = parsed_json["message"].to_json = Vapi::ClientInboundMessageMessage.from_json(json_object: ) end new(message: , additional_properties: struct) 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.
59 60 61 |
# File 'lib/vapi_server_sdk/types/client_inbound_message.rb', line 59 def self.validate_raw(obj:) Vapi::ClientInboundMessageMessage.validate_raw(obj: obj.) end |
Instance Method Details
#to_json(*_args) ⇒ String
Serialize an instance of ClientInboundMessage to a JSON object
49 50 51 |
# File 'lib/vapi_server_sdk/types/client_inbound_message.rb', line 49 def to_json(*_args) @_field_set&.to_json end |