class Uber::Estimates::ResponseTypes::BaseResponse

Attributes

display_name[R]
localized_display_name[R]
product_id[R]

Public Class Methods

new(raw_hash) click to toggle source
# File lib/uber/estimates/response_types/base_response.rb, line 7
def initialize(raw_hash)
  @localized_display_name = raw_hash['localized_display_name']
  @display_name = raw_hash['display_name']
  @product_id = raw_hash['product_id']
end