Class: Vapi::MakeCredential

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

Constant Summary collapse

OMIT =
Object.new

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(provider:, team_id:, region:, api_key:, id:, org_id:, created_at:, updated_at:, name: OMIT, additional_properties: nil) ⇒ Vapi::MakeCredential

Parameters:

  • provider (String)
  • team_id (String)

    Team ID

  • region (String)

    Region of your application. For example: eu1, eu2, us1, us2

  • api_key (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.

  • name (String) (defaults to: OMIT)

    This is the name of credential. This is just for your reference.

  • additional_properties (OpenStruct) (defaults to: nil)

    Additional properties unmapped to the current class definition



46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
# File 'lib/vapi_server_sdk/types/make_credential.rb', line 46

def initialize(provider:, team_id:, region:, api_key:, id:, org_id:, created_at:, updated_at:, name: OMIT,
               additional_properties: nil)
  @provider = provider
  @team_id = team_id
  @region = region
  @api_key = api_key
  @id = id
  @org_id = org_id
  @created_at = created_at
  @updated_at = updated_at
  @name = name if name != OMIT
  @additional_properties = additional_properties
  @_field_set = {
    "provider": provider,
    "teamId": team_id,
    "region": region,
    "apiKey": api_key,
    "id": id,
    "orgId": org_id,
    "createdAt": created_at,
    "updatedAt": updated_at,
    "name": name
  }.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



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

def additional_properties
  @additional_properties
end

#api_keyString (readonly)

Returns This is not returned in the API.

Returns:

  • (String)

    This is not returned in the API.



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

def api_key
  @api_key
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.



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

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.



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

def id
  @id
end

#nameString (readonly)

Returns This is the name of credential. This is just for your reference.

Returns:

  • (String)

    This is the name of credential. This is just for your reference.



26
27
28
# File 'lib/vapi_server_sdk/types/make_credential.rb', line 26

def name
  @name
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.



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

def org_id
  @org_id
end

#providerString (readonly)

Returns:

  • (String)


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

def provider
  @provider
end

#regionString (readonly)

Returns Region of your application. For example: eu1, eu2, us1, us2.

Returns:

  • (String)

    Region of your application. For example: eu1, eu2, us1, us2



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

def region
  @region
end

#team_idString (readonly)

Returns Team ID.

Returns:

  • (String)

    Team ID



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

def team_id
  @team_id
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.



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

def updated_at
  @updated_at
end

Class Method Details

.from_json(json_object:) ⇒ Vapi::MakeCredential

Deserialize a JSON object to an instance of MakeCredential

Parameters:

  • json_object (String)

Returns:



77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
# File 'lib/vapi_server_sdk/types/make_credential.rb', line 77

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


116
117
118
119
120
121
122
123
124
125
126
# File 'lib/vapi_server_sdk/types/make_credential.rb', line 116

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.team_id.is_a?(String) != false || raise("Passed value for field obj.team_id is not the expected type, validation failed.")
  obj.region.is_a?(String) != false || raise("Passed value for field obj.region 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.")
  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.name&.is_a?(String) != false || raise("Passed value for field obj.name is not the expected type, validation failed.")
end

Instance Method Details

#to_json(*_args) ⇒ String

Serialize an instance of MakeCredential to a JSON object

Returns:

  • (String)


106
107
108
# File 'lib/vapi_server_sdk/types/make_credential.rb', line 106

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