Class: Io::Flow::V0::Models::OrderQuoteLineError
- Inherits:
-
Object
- Object
- Io::Flow::V0::Models::OrderQuoteLineError
- Defined in:
- lib/flow_commerce/flow_api_v0_client.rb
Instance Attribute Summary collapse
-
#code ⇒ Object
readonly
Returns the value of attribute code.
-
#message ⇒ Object
readonly
Returns the value of attribute message.
Instance Method Summary collapse
- #copy(incoming = {}) ⇒ Object
-
#initialize(incoming = {}) ⇒ OrderQuoteLineError
constructor
A new instance of OrderQuoteLineError.
- #to_hash ⇒ Object
- #to_json ⇒ Object
Constructor Details
#initialize(incoming = {}) ⇒ OrderQuoteLineError
Returns a new instance of OrderQuoteLineError.
47214 47215 47216 47217 47218 47219 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 47214 def initialize(incoming={}) opts = HttpClient::Helper.symbolize_keys(incoming) HttpClient::Preconditions.require_keys(opts, [:code, :message], 'OrderQuoteLineError') @code = (x = opts.delete(:code); x.is_a?(::Io::Flow::V0::Models::OrderQuoteLineErrorCode) ? x : ::Io::Flow::V0::Models::OrderQuoteLineErrorCode.apply(x)) @message = HttpClient::Preconditions.assert_class('message', opts.delete(:message), String) end |
Instance Attribute Details
#code ⇒ Object (readonly)
Returns the value of attribute code.
47212 47213 47214 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 47212 def code @code end |
#message ⇒ Object (readonly)
Returns the value of attribute message.
47212 47213 47214 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 47212 def @message end |
Instance Method Details
#copy(incoming = {}) ⇒ Object
47225 47226 47227 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 47225 def copy(incoming={}) OrderQuoteLineError.new(to_hash.merge(HttpClient::Helper.symbolize_keys(incoming))) end |
#to_hash ⇒ Object
47229 47230 47231 47232 47233 47234 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 47229 def to_hash { :code => code.value, :message => } end |
#to_json ⇒ Object
47221 47222 47223 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 47221 def to_json JSON.dump(to_hash) end |