Class: Vapi::TwilioCredential

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

Constant Summary collapse

OMIT =
Object.new

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(provider:, auth_token:, id:, org_id:, created_at:, updated_at:, account_sid:, additional_properties: nil) ⇒ Vapi::TwilioCredential

Parameters:

  • provider (String)
  • auth_token (String)

    This is not returned in the API.

  • id (String)

    This is the unique identifier for the credential.

  • org_id (String)

    This is the unique identifier for the org that this credential belongs to.

  • created_at (DateTime)

    This is the ISO 8601 date-time string of when the credential was created.

  • updated_at (DateTime)

    This is the ISO 8601 date-time string of when the assistant was last updated.

  • account_sid (String)
  • additional_properties (OpenStruct) (defaults to: nil)

    Additional properties unmapped to the current class definition



40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
# File 'lib/vapi_server_sdk/types/twilio_credential.rb', line 40

def initialize(provider:, auth_token:, id:, org_id:, created_at:, updated_at:, account_sid:,
               additional_properties: nil)
  @provider = provider
  @auth_token = auth_token
  @id = id
  @org_id = org_id
  @created_at = created_at
  @updated_at = updated_at
  @account_sid = 
  @additional_properties = additional_properties
  @_field_set = {
    "provider": provider,
    "authToken": auth_token,
    "id": id,
    "orgId": org_id,
    "createdAt": created_at,
    "updatedAt": updated_at,
    "accountSid": 
  }
end

Instance Attribute Details

#account_sidString (readonly)

Returns:

  • (String)


22
23
24
# File 'lib/vapi_server_sdk/types/twilio_credential.rb', line 22

def 
  @account_sid
end

#additional_propertiesOpenStruct (readonly)

Returns Additional properties unmapped to the current class definition.

Returns:

  • (OpenStruct)

    Additional properties unmapped to the current class definition



24
25
26
# File 'lib/vapi_server_sdk/types/twilio_credential.rb', line 24

def additional_properties
  @additional_properties
end

#auth_tokenString (readonly)

Returns This is not returned in the API.

Returns:

  • (String)

    This is not returned in the API.



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

def auth_token
  @auth_token
end

#created_atDateTime (readonly)

Returns This is the ISO 8601 date-time string of when the credential was created.

Returns:

  • (DateTime)

    This is the ISO 8601 date-time string of when the credential was created.



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

def created_at
  @created_at
end

#idString (readonly)

Returns This is the unique identifier for the credential.

Returns:

  • (String)

    This is the unique identifier for the credential.



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

def id
  @id
end

#org_idString (readonly)

Returns This is the unique identifier for the org that this credential belongs to.

Returns:

  • (String)

    This is the unique identifier for the org that this credential belongs to.



16
17
18
# File 'lib/vapi_server_sdk/types/twilio_credential.rb', line 16

def org_id
  @org_id
end

#providerString (readonly)

Returns:

  • (String)


10
11
12
# File 'lib/vapi_server_sdk/types/twilio_credential.rb', line 10

def provider
  @provider
end

#updated_atDateTime (readonly)

Returns This is the ISO 8601 date-time string of when the assistant was last updated.

Returns:

  • (DateTime)

    This is the ISO 8601 date-time string of when the assistant was last updated.



20
21
22
# File 'lib/vapi_server_sdk/types/twilio_credential.rb', line 20

def updated_at
  @updated_at
end

Class Method Details

.from_json(json_object:) ⇒ Vapi::TwilioCredential

Deserialize a JSON object to an instance of TwilioCredential

Parameters:

  • json_object (String)

Returns:



65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
# File 'lib/vapi_server_sdk/types/twilio_credential.rb', line 65

def self.from_json(json_object:)
  struct = JSON.parse(json_object, object_class: OpenStruct)
  parsed_json = JSON.parse(json_object)
  provider = parsed_json["provider"]
  auth_token = parsed_json["authToken"]
  id = parsed_json["id"]
  org_id = parsed_json["orgId"]
  created_at = (DateTime.parse(parsed_json["createdAt"]) unless parsed_json["createdAt"].nil?)
  updated_at = (DateTime.parse(parsed_json["updatedAt"]) unless parsed_json["updatedAt"].nil?)
   = parsed_json["accountSid"]
  new(
    provider: provider,
    auth_token: auth_token,
    id: id,
    org_id: org_id,
    created_at: created_at,
    updated_at: updated_at,
    account_sid: ,
    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)


100
101
102
103
104
105
106
107
108
# File 'lib/vapi_server_sdk/types/twilio_credential.rb', line 100

def self.validate_raw(obj:)
  obj.provider.is_a?(String) != false || raise("Passed value for field obj.provider is not the expected type, validation failed.")
  obj.auth_token.is_a?(String) != false || raise("Passed value for field obj.auth_token is not the expected type, validation failed.")
  obj.id.is_a?(String) != false || raise("Passed value for field obj.id is not the expected type, validation failed.")
  obj.org_id.is_a?(String) != false || raise("Passed value for field obj.org_id is not the expected type, validation failed.")
  obj.created_at.is_a?(DateTime) != false || raise("Passed value for field obj.created_at is not the expected type, validation failed.")
  obj.updated_at.is_a?(DateTime) != false || raise("Passed value for field obj.updated_at is not the expected type, validation failed.")
  obj..is_a?(String) != false || raise("Passed value for field obj.account_sid is not the expected type, validation failed.")
end

Instance Method Details

#to_json(*_args) ⇒ String

Serialize an instance of TwilioCredential to a JSON object

Returns:

  • (String)


90
91
92
# File 'lib/vapi_server_sdk/types/twilio_credential.rb', line 90

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