Class: BitwardenSDKSecrets::BitwardenSettings

Inherits:
Object
  • Object
show all
Defined in:
lib/bitwarden-sdk-secrets.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(api_url, identity_url) ⇒ BitwardenSettings

Returns a new instance of BitwardenSettings.



18
19
20
21
22
23
24
25
# File 'lib/bitwarden-sdk-secrets.rb', line 18

def initialize(api_url, identity_url)
  # if api_url.nil? || identity_url.nil?
  #   raise ArgumentError, "api_url and identity_url cannot be nil"
  # end

  @api_url = api_url
  @identity_url = identity_url
end

Instance Attribute Details

#api_urlObject

Returns the value of attribute api_url.



16
17
18
# File 'lib/bitwarden-sdk-secrets.rb', line 16

def api_url
  @api_url
end

#identity_urlObject

Returns the value of attribute identity_url.



16
17
18
# File 'lib/bitwarden-sdk-secrets.rb', line 16

def identity_url
  @identity_url
end