Class: Io::Flow::V0::Models::FieldValidationMin

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

Instance Attribute Summary collapse

Attributes inherited from FieldValidationRule

#discriminator

Instance Method Summary collapse

Methods inherited from FieldValidationRule

from_json, #to_hash

Constructor Details

#initialize(incoming = {}) ⇒ FieldValidationMin

Returns a new instance of FieldValidationMin.



33272
33273
33274
33275
33276
33277
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 33272

def initialize(incoming={})
  super(:discriminator => FieldValidationRule::Types::FIELD_VALIDATION_MIN)
  opts = HttpClient::Helper.symbolize_keys(incoming)
  HttpClient::Preconditions.require_keys(opts, [:length], 'FieldValidationMin')
  @length = HttpClient::Preconditions.assert_class('length', opts.delete(:length), Integer)
end

Instance Attribute Details

#lengthObject (readonly)

Returns the value of attribute length.



33270
33271
33272
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 33270

def length
  @length
end

Instance Method Details

#copy(incoming = {}) ⇒ Object



33283
33284
33285
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 33283

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

#subtype_to_hashObject



33287
33288
33289
33290
33291
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 33287

def subtype_to_hash
  {
    :length => length
  }
end

#to_jsonObject



33279
33280
33281
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 33279

def to_json
  JSON.dump(to_hash)
end