Class: Vapi::VonageCredential

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

Constant Summary collapse

OMIT =
Object.new

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(vonage_application_private_key:, provider:, api_secret:, id:, org_id:, created_at:, updated_at:, vonage_application_id:, api_key:, name: OMIT, additional_properties: nil) ⇒ Vapi::VonageCredential



51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
# File 'lib/vapi_server_sdk/types/vonage_credential.rb', line 51

def initialize(vonage_application_private_key:, provider:, api_secret:, id:, org_id:, created_at:, updated_at:,
               vonage_application_id:, api_key:, name: OMIT, additional_properties: nil)
  @vonage_application_private_key = vonage_application_private_key
  @provider = provider
  @api_secret = api_secret
  @id = id
  @org_id = org_id
  @created_at = created_at
  @updated_at = updated_at
  @vonage_application_id = vonage_application_id
  @name = name if name != OMIT
  @api_key = api_key
  @additional_properties = additional_properties
  @_field_set = {
    "vonageApplicationPrivateKey": vonage_application_private_key,
    "provider": provider,
    "apiSecret": api_secret,
    "id": id,
    "orgId": org_id,
    "createdAt": created_at,
    "updatedAt": updated_at,
    "vonageApplicationId": vonage_application_id,
    "name": name,
    "apiKey": api_key
  }.reject do |_k, v|
    v == OMIT
  end
end

Instance Attribute Details

#additional_propertiesOpenStruct (readonly)



31
32
33
# File 'lib/vapi_server_sdk/types/vonage_credential.rb', line 31

def additional_properties
  @additional_properties
end

#api_keyString (readonly)



29
30
31
# File 'lib/vapi_server_sdk/types/vonage_credential.rb', line 29

def api_key
  @api_key
end

#api_secretString (readonly)



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

def api_secret
  @api_secret
end

#created_atDateTime (readonly)



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

def created_at
  @created_at
end

#idString (readonly)



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

def id
  @id
end

#nameString (readonly)



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

def name
  @name
end

#org_idString (readonly)



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

def org_id
  @org_id
end

#providerString (readonly)



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

def provider
  @provider
end

#updated_atDateTime (readonly)



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

def updated_at
  @updated_at
end

#vonage_application_idString (readonly)



25
26
27
# File 'lib/vapi_server_sdk/types/vonage_credential.rb', line 25

def vonage_application_id
  @vonage_application_id
end

#vonage_application_private_keyString (readonly)



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

def vonage_application_private_key
  @vonage_application_private_key
end

Class Method Details

.from_json(json_object:) ⇒ Vapi::VonageCredential

Deserialize a JSON object to an instance of VonageCredential



84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
# File 'lib/vapi_server_sdk/types/vonage_credential.rb', line 84

def self.from_json(json_object:)
  struct = JSON.parse(json_object, object_class: OpenStruct)
  parsed_json = JSON.parse(json_object)
  vonage_application_private_key = parsed_json["vonageApplicationPrivateKey"]
  provider = parsed_json["provider"]
  api_secret = parsed_json["apiSecret"]
  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?)
  vonage_application_id = parsed_json["vonageApplicationId"]
  name = parsed_json["name"]
  api_key = parsed_json["apiKey"]
  new(
    vonage_application_private_key: vonage_application_private_key,
    provider: provider,
    api_secret: api_secret,
    id: id,
    org_id: org_id,
    created_at: created_at,
    updated_at: updated_at,
    vonage_application_id: vonage_application_id,
    name: name,
    api_key: api_key,
    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.


125
126
127
128
129
130
131
132
133
134
135
136
# File 'lib/vapi_server_sdk/types/vonage_credential.rb', line 125

def self.validate_raw(obj:)
  obj.vonage_application_private_key.is_a?(String) != false || raise("Passed value for field obj.vonage_application_private_key is not the expected type, validation failed.")
  obj.provider.is_a?(String) != false || raise("Passed value for field obj.provider is not the expected type, validation failed.")
  obj.api_secret.is_a?(String) != false || raise("Passed value for field obj.api_secret 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.vonage_application_id.is_a?(String) != false || raise("Passed value for field obj.vonage_application_id 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.api_key.is_a?(String) != false || raise("Passed value for field obj.api_key is not the expected type, validation failed.")
end

Instance Method Details

#to_json(*_args) ⇒ String

Serialize an instance of VonageCredential to a JSON object



115
116
117
# File 'lib/vapi_server_sdk/types/vonage_credential.rb', line 115

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