Class: Vapi::ServerMessageResponse

Inherits:
Object
  • Object
show all
Defined in:
lib/vapi_server_sdk/types/server_message_response.rb

Constant Summary collapse

OMIT =
Object.new

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(message_response:, additional_properties: nil) ⇒ Vapi::ServerMessageResponse

Parameters:

  • message_response (Vapi::ServerMessageResponseMessageResponse)

    This is the response that is expected from the server to the message. Note: Most messages don’t expect a response. Only “assistant-request”, “tool-calls” and “transfer-destination-request” do.

  • additional_properties (OpenStruct) (defaults to: nil)

    Additional properties unmapped to the current class definition



26
27
28
29
30
# File 'lib/vapi_server_sdk/types/server_message_response.rb', line 26

def initialize(message_response:, additional_properties: nil)
  @message_response = message_response
  @additional_properties = additional_properties
  @_field_set = { "messageResponse": message_response }
end

Instance Attribute Details

#additional_propertiesOpenStruct (readonly)

Returns Additional properties unmapped to the current class definition.

Returns:

  • (OpenStruct)

    Additional properties unmapped to the current class definition



14
15
16
# File 'lib/vapi_server_sdk/types/server_message_response.rb', line 14

def additional_properties
  @additional_properties
end

#message_responseVapi::ServerMessageResponseMessageResponse (readonly)

Returns This is the response that is expected from the server to the message. Note: Most messages don’t expect a response. Only “assistant-request”, “tool-calls” and “transfer-destination-request” do.

Returns:

  • (Vapi::ServerMessageResponseMessageResponse)

    This is the response that is expected from the server to the message. Note: Most messages don’t expect a response. Only “assistant-request”, “tool-calls” and “transfer-destination-request” do.



12
13
14
# File 'lib/vapi_server_sdk/types/server_message_response.rb', line 12

def message_response
  @message_response
end

Class Method Details

.from_json(json_object:) ⇒ Vapi::ServerMessageResponse

Deserialize a JSON object to an instance of ServerMessageResponse

Parameters:

  • json_object (String)

Returns:



36
37
38
39
40
41
42
43
44
45
46
# File 'lib/vapi_server_sdk/types/server_message_response.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["messageResponse"].nil?
    message_response = nil
  else
    message_response = parsed_json["messageResponse"].to_json
    message_response = Vapi::ServerMessageResponseMessageResponse.from_json(json_object: message_response)
  end
  new(message_response: message_response, 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.

Parameters:

  • obj (Object)

Returns:

  • (Void)


61
62
63
# File 'lib/vapi_server_sdk/types/server_message_response.rb', line 61

def self.validate_raw(obj:)
  Vapi::ServerMessageResponseMessageResponse.validate_raw(obj: obj.message_response)
end

Instance Method Details

#to_json(*_args) ⇒ String

Serialize an instance of ServerMessageResponse to a JSON object

Returns:

  • (String)


51
52
53
# File 'lib/vapi_server_sdk/types/server_message_response.rb', line 51

def to_json(*_args)
  @_field_set&.to_json
end