Class: Io::Flow::V0::Models::OrderNumberGeneratorUuid

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

Overview

Generates an order number based on a UUID (no dashes or other formatting). This is the default for Flow orders (with order number prefixed by ord-)

Instance Attribute Summary collapse

Attributes inherited from OrderNumberGenerator

#discriminator

Instance Method Summary collapse

Methods inherited from OrderNumberGenerator

from_json, #to_hash

Constructor Details

#initialize(incoming = {}) ⇒ OrderNumberGeneratorUuid

Returns a new instance of OrderNumberGeneratorUuid.



48656
48657
48658
48659
48660
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 48656

def initialize(incoming={})
  super(:discriminator => OrderNumberGenerator::Types::ORDER_NUMBER_GENERATOR_UUID)
  opts = HttpClient::Helper.symbolize_keys(incoming)
  @prefix = HttpClient::Preconditions.assert_class('prefix', (x = opts.delete(:prefix); x.nil? ? "ord-" : x), String)
end

Instance Attribute Details

#prefixObject (readonly)

Returns the value of attribute prefix.



48654
48655
48656
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 48654

def prefix
  @prefix
end

Instance Method Details

#copy(incoming = {}) ⇒ Object



48666
48667
48668
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 48666

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

#subtype_to_hashObject



48670
48671
48672
48673
48674
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 48670

def subtype_to_hash
  {
    :prefix => prefix
  }
end

#to_jsonObject



48662
48663
48664
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 48662

def to_json
  JSON.dump(to_hash)
end