Class: Access::VerifyResponse
- Defined in:
- lib/access/response.rb
Instance Attribute Summary
Attributes inherited from Response
#access_tokens, #api_calls_over_time, #categories, #content_type, #details, #dev_node, #error, #filters, #info, #interval, #links, #locations, #member_postal_codes, #member_query_terms, #members, #message, #oauth_access_token, #oauth_applications, #oauth_token, #oauth_tokens, #offers, #redemption_method, #report_env, #reports, #response_status, #status, #stores, #success, #suggestions, #time_period, #total_api_calls, #verify
Instance Method Summary collapse
Methods inherited from Response
#check_success, #create_error, #initialize
Constructor Details
This class inherits a constructor from Access::Response
Instance Method Details
#process_data ⇒ Object
88 89 90 91 92 93 94 |
# File 'lib/access/response.rb', line 88 def process_data @oauth_access_token = Access::Verify.new(@oauth_access_token) if @oauth_access_token @offers = Access::Verify.new(@offers) if @offers @categories = Access::Verify.new(@categories) if @categories @locations = Access::Verify.new(@locations) if @locations @stores = Access::Verify.new(@stores) if @stores end |