Class: GetTokensResponse

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

Overview

http://fps.amazonaws.com/doc/2007-01-08/GetTokensResponse tokens - Token status - ResponseStatus errors - ServiceErrors requestId - SOAP::SOAPString

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(tokens = [], status = nil, errors = nil, requestId = nil) ⇒ GetTokensResponse

Returns a new instance of GetTokensResponse.



1439
1440
1441
1442
1443
1444
# File 'lib/default.rb', line 1439

def initialize(tokens = [], status = nil, errors = nil, requestId = nil)
  @tokens = tokens
  @status = status
  @errors = errors
  @requestId = requestId
end

Instance Attribute Details

#errorsObject

Returns the value of attribute errors.



1436
1437
1438
# File 'lib/default.rb', line 1436

def errors
  @errors
end

#requestIdObject

Returns the value of attribute requestId.



1437
1438
1439
# File 'lib/default.rb', line 1437

def requestId
  @requestId
end

#statusObject

Returns the value of attribute status.



1435
1436
1437
# File 'lib/default.rb', line 1435

def status
  @status
end

#tokensObject

Returns the value of attribute tokens.



1434
1435
1436
# File 'lib/default.rb', line 1434

def tokens
  @tokens
end