Class: Io::Flow::V0::Models::OrderServiceChange

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

Overview

Manual change for a shipping method used for an order. Currently only available to orders with a single calculated delivery.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(incoming = {}) ⇒ OrderServiceChange

Returns a new instance of OrderServiceChange.



50154
50155
50156
50157
50158
50159
50160
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 50154

def initialize(incoming={})
  opts = HttpClient::Helper.symbolize_keys(incoming)
  HttpClient::Preconditions.require_keys(opts, [:id, :from, :to], 'OrderServiceChange')
  @id = HttpClient::Preconditions.assert_class('id', opts.delete(:id), String)
  @from = (x = opts.delete(:from); x.is_a?(::Io::Flow::V0::Models::CarrierService) ? x : ::Io::Flow::V0::Models::CarrierService.new(x))
  @to = (x = opts.delete(:to); x.is_a?(::Io::Flow::V0::Models::CarrierService) ? x : ::Io::Flow::V0::Models::CarrierService.new(x))
end

Instance Attribute Details

#fromObject (readonly)

Returns the value of attribute from.



50152
50153
50154
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 50152

def from
  @from
end

#idObject (readonly)

Returns the value of attribute id.



50152
50153
50154
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 50152

def id
  @id
end

#toObject (readonly)

Returns the value of attribute to.



50152
50153
50154
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 50152

def to
  @to
end

Instance Method Details

#copy(incoming = {}) ⇒ Object



50166
50167
50168
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 50166

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

#to_hashObject



50170
50171
50172
50173
50174
50175
50176
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 50170

def to_hash
  {
    :id => id,
    :from => from.to_hash,
    :to => to.to_hash
  }
end

#to_jsonObject



50162
50163
50164
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 50162

def to_json
  JSON.dump(to_hash)
end