Class: BunqRb::Configuration

Inherits:
Object
  • Object
show all
Defined in:
lib/bunq_rb/configuration.rb

Overview

Configuration

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initializeConfiguration

Returns a new instance of Configuration.



6
7
8
9
10
11
12
# File 'lib/bunq_rb/configuration.rb', line 6

def initialize
  @api_key = ""
  @key = nil
  @session_token = nil
  @url = ""
  @page_size = 10
end

Instance Attribute Details

#api_keyObject

Returns the value of attribute api_key.



4
5
6
# File 'lib/bunq_rb/configuration.rb', line 4

def api_key
  @api_key
end

#keyObject

Returns the value of attribute key.



4
5
6
# File 'lib/bunq_rb/configuration.rb', line 4

def key
  @key
end

#page_sizeObject

Returns the value of attribute page_size.



4
5
6
# File 'lib/bunq_rb/configuration.rb', line 4

def page_size
  @page_size
end

#session_tokenObject

Returns the value of attribute session_token.



4
5
6
# File 'lib/bunq_rb/configuration.rb', line 4

def session_token
  @session_token
end

#urlObject

Returns the value of attribute url.



4
5
6
# File 'lib/bunq_rb/configuration.rb', line 4

def url
  @url
end