Class: Thrust::TestflightCredentials

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

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(attributes) ⇒ TestflightCredentials

Returns a new instance of TestflightCredentials.



6
7
8
9
# File 'lib/thrust/testflight_credentials.rb', line 6

def initialize(attributes)
  @api_token = attributes['api_token']
  @team_token = attributes['team_token']
end

Instance Attribute Details

#api_tokenObject (readonly)

Returns the value of attribute api_token.



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

def api_token
  @api_token
end

#team_tokenObject (readonly)

Returns the value of attribute team_token.



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

def team_token
  @team_token
end