Class: Vapi::UpdateTelnyxPhoneNumberDto

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

Constant Summary collapse

OMIT =
Object.new

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(fallback_destination: OMIT, hooks: OMIT, name: OMIT, assistant_id: OMIT, workflow_id: OMIT, squad_id: OMIT, server: OMIT, number: OMIT, credential_id: OMIT, additional_properties: nil) ⇒ Vapi::UpdateTelnyxPhoneNumberDto



96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
# File 'lib/vapi_server_sdk/types/update_telnyx_phone_number_dto.rb', line 96

def initialize(fallback_destination: OMIT, hooks: OMIT, name: OMIT, assistant_id: OMIT, workflow_id: OMIT,
               squad_id: OMIT, server: OMIT, number: OMIT, credential_id: OMIT, additional_properties: nil)
  @fallback_destination = fallback_destination if fallback_destination != OMIT
  @hooks = hooks if hooks != OMIT
  @name = name if name != OMIT
  @assistant_id = assistant_id if assistant_id != OMIT
  @workflow_id = workflow_id if workflow_id != OMIT
  @squad_id = squad_id if squad_id != OMIT
  @server = server if server != OMIT
  @number = number if number != OMIT
  @credential_id = credential_id if credential_id != OMIT
  @additional_properties = additional_properties
  @_field_set = {
    "fallbackDestination": fallback_destination,
    "hooks": hooks,
    "name": name,
    "assistantId": assistant_id,
    "workflowId": workflow_id,
    "squadId": squad_id,
    "server": server,
    "number": number,
    "credentialId": credential_id
  }.reject do |_k, v|
    v == OMIT
  end
end

Instance Attribute Details

#additional_propertiesOpenStruct (readonly)



54
55
56
# File 'lib/vapi_server_sdk/types/update_telnyx_phone_number_dto.rb', line 54

def additional_properties
  @additional_properties
end

#assistant_idString (readonly)



27
28
29
# File 'lib/vapi_server_sdk/types/update_telnyx_phone_number_dto.rb', line 27

def assistant_id
  @assistant_id
end

#credential_idString (readonly)



52
53
54
# File 'lib/vapi_server_sdk/types/update_telnyx_phone_number_dto.rb', line 52

def credential_id
  @credential_id
end

#fallback_destinationVapi::UpdateTelnyxPhoneNumberDtoFallbackDestination (readonly)



17
18
19
# File 'lib/vapi_server_sdk/types/update_telnyx_phone_number_dto.rb', line 17

def fallback_destination
  @fallback_destination
end

#hooksArray<Vapi::PhoneNumberHookCallRinging> (readonly)



19
20
21
# File 'lib/vapi_server_sdk/types/update_telnyx_phone_number_dto.rb', line 19

def hooks
  @hooks
end

#nameString (readonly)



21
22
23
# File 'lib/vapi_server_sdk/types/update_telnyx_phone_number_dto.rb', line 21

def name
  @name
end

#numberString (readonly)



48
49
50
# File 'lib/vapi_server_sdk/types/update_telnyx_phone_number_dto.rb', line 48

def number
  @number
end

#serverVapi::Server (readonly)



46
47
48
# File 'lib/vapi_server_sdk/types/update_telnyx_phone_number_dto.rb', line 46

def server
  @server
end

#squad_idString (readonly)



39
40
41
# File 'lib/vapi_server_sdk/types/update_telnyx_phone_number_dto.rb', line 39

def squad_id
  @squad_id
end

#workflow_idString (readonly)



33
34
35
# File 'lib/vapi_server_sdk/types/update_telnyx_phone_number_dto.rb', line 33

def workflow_id
  @workflow_id
end

Class Method Details

.from_json(json_object:) ⇒ Vapi::UpdateTelnyxPhoneNumberDto

Deserialize a JSON object to an instance of UpdateTelnyxPhoneNumberDto



127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
# File 'lib/vapi_server_sdk/types/update_telnyx_phone_number_dto.rb', line 127

def self.from_json(json_object:)
  struct = JSON.parse(json_object, object_class: OpenStruct)
  parsed_json = JSON.parse(json_object)
  if parsed_json["fallbackDestination"].nil?
    fallback_destination = nil
  else
    fallback_destination = parsed_json["fallbackDestination"].to_json
    fallback_destination = Vapi::UpdateTelnyxPhoneNumberDtoFallbackDestination.from_json(json_object: fallback_destination)
  end
  hooks = parsed_json["hooks"]&.map do |item|
    item = item.to_json
    Vapi::PhoneNumberHookCallRinging.from_json(json_object: item)
  end
  name = parsed_json["name"]
  assistant_id = parsed_json["assistantId"]
  workflow_id = parsed_json["workflowId"]
  squad_id = parsed_json["squadId"]
  if parsed_json["server"].nil?
    server = nil
  else
    server = parsed_json["server"].to_json
    server = Vapi::Server.from_json(json_object: server)
  end
  number = parsed_json["number"]
  credential_id = parsed_json["credentialId"]
  new(
    fallback_destination: fallback_destination,
    hooks: hooks,
    name: name,
    assistant_id: assistant_id,
    workflow_id: workflow_id,
    squad_id: squad_id,
    server: server,
    number: number,
    credential_id: credential_id,
    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.


179
180
181
182
183
184
185
186
187
188
189
# File 'lib/vapi_server_sdk/types/update_telnyx_phone_number_dto.rb', line 179

def self.validate_raw(obj:)
  obj.fallback_destination.nil? || Vapi::UpdateTelnyxPhoneNumberDtoFallbackDestination.validate_raw(obj: obj.fallback_destination)
  obj.hooks&.is_a?(Array) != false || raise("Passed value for field obj.hooks is not the expected type, validation failed.")
  obj.name&.is_a?(String) != false || raise("Passed value for field obj.name is not the expected type, validation failed.")
  obj.assistant_id&.is_a?(String) != false || raise("Passed value for field obj.assistant_id is not the expected type, validation failed.")
  obj.workflow_id&.is_a?(String) != false || raise("Passed value for field obj.workflow_id is not the expected type, validation failed.")
  obj.squad_id&.is_a?(String) != false || raise("Passed value for field obj.squad_id is not the expected type, validation failed.")
  obj.server.nil? || Vapi::Server.validate_raw(obj: obj.server)
  obj.number&.is_a?(String) != false || raise("Passed value for field obj.number is not the expected type, validation failed.")
  obj.credential_id&.is_a?(String) != false || raise("Passed value for field obj.credential_id is not the expected type, validation failed.")
end

Instance Method Details

#to_json(*_args) ⇒ String

Serialize an instance of UpdateTelnyxPhoneNumberDto to a JSON object



169
170
171
# File 'lib/vapi_server_sdk/types/update_telnyx_phone_number_dto.rb', line 169

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