Class: Io::Flow::V0::Models::OrderQuoteErrorDetails

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

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(incoming = {}) ⇒ OrderQuoteErrorDetails

Returns a new instance of OrderQuoteErrorDetails.



47075
47076
47077
47078
47079
47080
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 47075

def initialize(incoming={})
  opts = HttpClient::Helper.symbolize_keys(incoming)
  HttpClient::Preconditions.require_keys(opts, [:code, :message], 'OrderQuoteErrorDetails')
  @code = (x = opts.delete(:code); x.is_a?(::Io::Flow::V0::Models::OrderQuoteErrorCode) ? x : ::Io::Flow::V0::Models::OrderQuoteErrorCode.apply(x))
  @message = HttpClient::Preconditions.assert_class('message', opts.delete(:message), String)
end

Instance Attribute Details

#codeObject (readonly)

Returns the value of attribute code.



47073
47074
47075
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 47073

def code
  @code
end

#messageObject (readonly)

Returns the value of attribute message.



47073
47074
47075
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 47073

def message
  @message
end

Instance Method Details

#copy(incoming = {}) ⇒ Object



47086
47087
47088
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 47086

def copy(incoming={})
  OrderQuoteErrorDetails.new(to_hash.merge(HttpClient::Helper.symbolize_keys(incoming)))
end

#to_hashObject



47090
47091
47092
47093
47094
47095
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 47090

def to_hash
  {
    :code => code.value,
    :message => message
  }
end

#to_jsonObject



47082
47083
47084
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 47082

def to_json
  JSON.dump(to_hash)
end