Class: Io::Flow::V0::Models::Packaging

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

Overview

Represents packaging available to ship items

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(incoming = {}) ⇒ Packaging

Returns a new instance of Packaging.



33425
33426
33427
33428
33429
33430
33431
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 33425

def initialize(incoming={})
  opts = HttpClient::Helper.symbolize_keys(incoming)
  HttpClient::Preconditions.require_keys(opts, [:dimensions], 'Packaging')
  @dimensions = (x = opts.delete(:dimensions); x.is_a?(::Io::Flow::V0::Models::Dimensions) ? x : ::Io::Flow::V0::Models::Dimensions.new(x))
  @name = (x = opts.delete(:name); x.nil? ? nil : HttpClient::Preconditions.assert_class('name', x, String))
  @number = (x = opts.delete(:number); x.nil? ? nil : HttpClient::Preconditions.assert_class('number', x, String))
end

Instance Attribute Details

#dimensionsObject (readonly)

Returns the value of attribute dimensions.



33423
33424
33425
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 33423

def dimensions
  @dimensions
end

#nameObject (readonly)

Returns the value of attribute name.



33423
33424
33425
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 33423

def name
  @name
end

#numberObject (readonly)

Returns the value of attribute number.



33423
33424
33425
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 33423

def number
  @number
end

Instance Method Details

#copy(incoming = {}) ⇒ Object



33437
33438
33439
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 33437

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

#to_hashObject



33441
33442
33443
33444
33445
33446
33447
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 33441

def to_hash
  {
    :dimensions => dimensions.to_hash,
    :name => name,
    :number => number
  }
end

#to_jsonObject



33433
33434
33435
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 33433

def to_json
  JSON.dump(to_hash)
end