Class: Io::Flow::V0::Models::OrderNumberGeneratorFixedLength

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

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(incoming = {}) ⇒ OrderNumberGeneratorFixedLength

Returns a new instance of OrderNumberGeneratorFixedLength.



48537
48538
48539
48540
48541
48542
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 48537

def initialize(incoming={})
  opts = HttpClient::Helper.symbolize_keys(incoming)
  HttpClient::Preconditions.require_keys(opts, [:length, :padding], 'OrderNumberGeneratorFixedLength')
  @length = HttpClient::Preconditions.assert_class('length', opts.delete(:length), Integer)
  @padding = HttpClient::Preconditions.assert_class('padding', opts.delete(:padding), String)
end

Instance Attribute Details

#lengthObject (readonly)

Returns the value of attribute length.



48535
48536
48537
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 48535

def length
  @length
end

#paddingObject (readonly)

Returns the value of attribute padding.



48535
48536
48537
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 48535

def padding
  @padding
end

Instance Method Details

#copy(incoming = {}) ⇒ Object



48548
48549
48550
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 48548

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

#to_hashObject



48552
48553
48554
48555
48556
48557
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 48552

def to_hash
  {
    :length => length,
    :padding => padding
  }
end

#to_jsonObject



48544
48545
48546
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 48544

def to_json
  JSON.dump(to_hash)
end