class Io::Flow::V0::Models::OrderNumberGeneratorFixedLength
Attributes
length[R]
padding[R]
Public Class Methods
new(incoming={})
click to toggle source
# File lib/flow_commerce/flow_api_v0_client.rb, line 52410 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
Public Instance Methods
copy(incoming={})
click to toggle source
# File lib/flow_commerce/flow_api_v0_client.rb, line 52421 def copy(incoming={}) OrderNumberGeneratorFixedLength.new(to_hash.merge(HttpClient::Helper.symbolize_keys(incoming))) end
to_hash()
click to toggle source
# File lib/flow_commerce/flow_api_v0_client.rb, line 52425 def to_hash { :length => length, :padding => padding } end
to_json()
click to toggle source
# File lib/flow_commerce/flow_api_v0_client.rb, line 52417 def to_json JSON.dump(to_hash) end