Class: Vapi::ClientMessage
- Inherits:
-
Object
- Object
- Vapi::ClientMessage
- Defined in:
- lib/vapi_server_sdk/types/client_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::ClientMessageMessage
readonly
These are all the messages that can be sent to the client-side SDKs during the call.
Class Method Summary collapse
-
.from_json(json_object:) ⇒ Vapi::ClientMessage
Deserialize a JSON object to an instance of ClientMessage.
-
.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::ClientMessage constructor
-
#to_json(*_args) ⇒ String
Serialize an instance of ClientMessage to a JSON object.
Constructor Details
#initialize(message:, additional_properties: nil) ⇒ Vapi::ClientMessage
26 27 28 29 30 |
# File 'lib/vapi_server_sdk/types/client_message.rb', line 26 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.
14 15 16 |
# File 'lib/vapi_server_sdk/types/client_message.rb', line 14 def additional_properties @additional_properties end |
#message ⇒ Vapi::ClientMessageMessage (readonly)
Returns These are all the messages that can be sent to the client-side SDKs during the call. Configure the messages you’d like to receive in ‘assistant.clientMessages`.
12 13 14 |
# File 'lib/vapi_server_sdk/types/client_message.rb', line 12 def @message end |
Class Method Details
.from_json(json_object:) ⇒ Vapi::ClientMessage
Deserialize a JSON object to an instance of ClientMessage
36 37 38 39 40 41 42 43 44 45 46 |
# File 'lib/vapi_server_sdk/types/client_message.rb', line 36 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::ClientMessageMessage.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.
61 62 63 |
# File 'lib/vapi_server_sdk/types/client_message.rb', line 61 def self.validate_raw(obj:) Vapi::ClientMessageMessage.validate_raw(obj: obj.) end |
Instance Method Details
#to_json(*_args) ⇒ String
Serialize an instance of ClientMessage to a JSON object
51 52 53 |
# File 'lib/vapi_server_sdk/types/client_message.rb', line 51 def to_json(*_args) @_field_set&.to_json end |