Class: GoogleDrive::ApiClientFetcher::Response

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

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(code, body) ⇒ Response

Returns a new instance of Response.



12
13
14
15
# File 'lib/google_drive/api_client_fetcher.rb', line 12

def initialize(code, body)
  @code = code
  @body = body
end

Instance Attribute Details

#bodyObject (readonly)

Returns the value of attribute body.



17
18
19
# File 'lib/google_drive/api_client_fetcher.rb', line 17

def body
  @body
end

#codeObject (readonly)

Returns the value of attribute code.



17
18
19
# File 'lib/google_drive/api_client_fetcher.rb', line 17

def code
  @code
end