Class: Vapi::CreateVoicemailToolDto

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

Constant Summary collapse

OMIT =
Object.new

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(type:, messages: OMIT, function: OMIT, additional_properties: nil) ⇒ Vapi::CreateVoicemailToolDto

Parameters:

  • messages (Array<Vapi::CreateVoicemailToolDtoMessagesItem>) (defaults to: OMIT)

    These are the messages that will be spoken to the user as the tool is running. For some tools, this is auto-filled based on special fields like ‘tool.destinations`. For others like the function tool, these can be custom configured.

  • type (String)

    The type of tool. “voicemail”. This uses the model itself to determine if a voicemil was reached. Can be used alternatively/alongside with TwilioVoicemailDetection

  • function (Vapi::OpenAiFunction) (defaults to: OMIT)

    This is the function definition of the tool. For ‘endCall`, `transferCall`, and `dtmf` tools, this is auto-filled based on tool-specific fields like `tool.destinations`. But, even in those cases, you can provide a custom function definition for advanced use cases. An example of an advanced use case is if you want to customize the message that’s spoken for ‘endCall` tool. You can specify a function where it returns an argument “reason”. Then, in `messages` array, you can have many “request-complete” messages. One of these messages will be triggered if the `messages[].conditions` matches the “reason” argument.

  • additional_properties (OpenStruct) (defaults to: nil)

    Additional properties unmapped to the current class definition



55
56
57
58
59
60
61
62
63
# File 'lib/vapi_server_sdk/types/create_voicemail_tool_dto.rb', line 55

def initialize(type:, messages: OMIT, function: OMIT, additional_properties: nil)
  @messages = messages if messages != OMIT
  @type = type
  @function = function if function != OMIT
  @additional_properties = additional_properties
  @_field_set = { "messages": messages, "type": type, "function": function }.reject do |_k, v|
    v == OMIT
  end
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



30
31
32
# File 'lib/vapi_server_sdk/types/create_voicemail_tool_dto.rb', line 30

def additional_properties
  @additional_properties
end

#functionVapi::OpenAiFunction (readonly)

Returns This is the function definition of the tool. For ‘endCall`, `transferCall`, and `dtmf` tools, this is auto-filled based on tool-specific fields like `tool.destinations`. But, even in those cases, you can provide a custom function definition for advanced use cases. An example of an advanced use case is if you want to customize the message that’s spoken for ‘endCall` tool. You can specify a function where it returns an argument “reason”. Then, in `messages` array, you can have many “request-complete” messages. One of these messages will be triggered if the `messages[].conditions` matches the “reason” argument.

Returns:

  • (Vapi::OpenAiFunction)

    This is the function definition of the tool. For ‘endCall`, `transferCall`, and `dtmf` tools, this is auto-filled based on tool-specific fields like `tool.destinations`. But, even in those cases, you can provide a custom function definition for advanced use cases. An example of an advanced use case is if you want to customize the message that’s spoken for ‘endCall` tool. You can specify a function where it returns an argument “reason”. Then, in `messages` array, you can have many “request-complete” messages. One of these messages will be triggered if the `messages[].conditions` matches the “reason” argument.



28
29
30
# File 'lib/vapi_server_sdk/types/create_voicemail_tool_dto.rb', line 28

def function
  @function
end

#messagesArray<Vapi::CreateVoicemailToolDtoMessagesItem> (readonly)

Returns These are the messages that will be spoken to the user as the tool is running. For some tools, this is auto-filled based on special fields like ‘tool.destinations`. For others like the function tool, these can be custom configured.

Returns:

  • (Array<Vapi::CreateVoicemailToolDtoMessagesItem>)

    These are the messages that will be spoken to the user as the tool is running. For some tools, this is auto-filled based on special fields like ‘tool.destinations`. For others like the function tool, these can be custom configured.



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

def messages
  @messages
end

#typeString (readonly)

Returns The type of tool. “voicemail”. This uses the model itself to determine if a voicemil was reached. Can be used alternatively/alongside with TwilioVoicemailDetection.

Returns:

  • (String)

    The type of tool. “voicemail”. This uses the model itself to determine if a voicemil was reached. Can be used alternatively/alongside with TwilioVoicemailDetection



18
19
20
# File 'lib/vapi_server_sdk/types/create_voicemail_tool_dto.rb', line 18

def type
  @type
end

Class Method Details

.from_json(json_object:) ⇒ Vapi::CreateVoicemailToolDto

Deserialize a JSON object to an instance of CreateVoicemailToolDto

Parameters:

  • json_object (String)

Returns:



69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
# File 'lib/vapi_server_sdk/types/create_voicemail_tool_dto.rb', line 69

def self.from_json(json_object:)
  struct = JSON.parse(json_object, object_class: OpenStruct)
  parsed_json = JSON.parse(json_object)
  messages = parsed_json["messages"]&.map do |item|
    item = item.to_json
    Vapi::CreateVoicemailToolDtoMessagesItem.from_json(json_object: item)
  end
  type = parsed_json["type"]
  if parsed_json["function"].nil?
    function = nil
  else
    function = parsed_json["function"].to_json
    function = Vapi::OpenAiFunction.from_json(json_object: function)
  end
  new(
    messages: messages,
    type: type,
    function: function,
    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)


104
105
106
107
108
# File 'lib/vapi_server_sdk/types/create_voicemail_tool_dto.rb', line 104

def self.validate_raw(obj:)
  obj.messages&.is_a?(Array) != false || raise("Passed value for field obj.messages is not the expected type, validation failed.")
  obj.type.is_a?(String) != false || raise("Passed value for field obj.type is not the expected type, validation failed.")
  obj.function.nil? || Vapi::OpenAiFunction.validate_raw(obj: obj.function)
end

Instance Method Details

#to_json(*_args) ⇒ String

Serialize an instance of CreateVoicemailToolDto to a JSON object

Returns:

  • (String)


94
95
96
# File 'lib/vapi_server_sdk/types/create_voicemail_tool_dto.rb', line 94

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