Class: AgileTrello::TrelloCredentials

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

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(public_key, access_token) ⇒ TrelloCredentials



5
6
7
8
# File 'lib/TrelloCredentials.rb', line 5

def initialize(public_key, access_token)
  @public_key = public_key
  @access_token = access_token
end

Instance Attribute Details

#access_tokenObject (readonly)

Returns the value of attribute access_token.



3
4
5
# File 'lib/TrelloCredentials.rb', line 3

def access_token
  @access_token
end

#public_keyObject (readonly)

Returns the value of attribute public_key.



3
4
5
# File 'lib/TrelloCredentials.rb', line 3

def public_key
  @public_key
end