Class: Io::Flow::V0::Models::HarmonizationDocument

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

Instance Attribute Summary collapse

Attributes inherited from Document

#discriminator

Instance Method Summary collapse

Methods inherited from Document

from_json, #to_hash

Constructor Details

#initialize(incoming = {}) ⇒ HarmonizationDocument

Returns a new instance of HarmonizationDocument.



33902
33903
33904
33905
33906
33907
33908
33909
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 33902

def initialize(incoming={})
  super(:discriminator => Document::Types::HARMONIZATION_DOCUMENT)
  opts = HttpClient::Helper.symbolize_keys(incoming)
  HttpClient::Preconditions.require_keys(opts, [:code, :categories], 'HarmonizationDocument')
  @code = HttpClient::Preconditions.assert_class('code', opts.delete(:code), String)
  @categories = HttpClient::Preconditions.assert_class('categories', opts.delete(:categories), Array).map { |v| (x = v; x.is_a?(::Io::Flow::V0::Models::CategorySummary) ? x : ::Io::Flow::V0::Models::CategorySummary.new(x)) }
  @origin = (x = opts.delete(:origin); x.nil? ? nil : HttpClient::Preconditions.assert_class('origin', x, String))
end

Instance Attribute Details

#categoriesObject (readonly)

Returns the value of attribute categories.



33900
33901
33902
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 33900

def categories
  @categories
end

#codeObject (readonly)

Returns the value of attribute code.



33900
33901
33902
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 33900

def code
  @code
end

#originObject (readonly)

Returns the value of attribute origin.



33900
33901
33902
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 33900

def origin
  @origin
end

Instance Method Details

#copy(incoming = {}) ⇒ Object



33915
33916
33917
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 33915

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

#subtype_to_hashObject



33919
33920
33921
33922
33923
33924
33925
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 33919

def subtype_to_hash
  {
    :code => code,
    :categories => categories.map { |o| o.to_hash },
    :origin => origin
  }
end

#to_jsonObject



33911
33912
33913
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 33911

def to_json
  JSON.dump(to_hash)
end