Class: OnlinePayments::SDK::Domain::RangeValidator

Inherits:
DataObject
  • Object
show all
Defined in:
lib/onlinepayments/sdk/domain/range_validator.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods inherited from DataObject

new_from_hash

Instance Attribute Details

#max_valueInteger

Returns the current value of max_value.

Returns:

  • (Integer)

    the current value of max_value



11
12
13
# File 'lib/onlinepayments/sdk/domain/range_validator.rb', line 11

def max_value
  @max_value
end

#min_valueInteger

Returns the current value of min_value.

Returns:

  • (Integer)

    the current value of min_value



11
12
13
# File 'lib/onlinepayments/sdk/domain/range_validator.rb', line 11

def min_value
  @min_value
end

Instance Method Details

#from_hash(hash) ⇒ Object



25
26
27
28
29
30
31
32
33
# File 'lib/onlinepayments/sdk/domain/range_validator.rb', line 25

def from_hash(hash)
  super
  if hash.has_key? 'maxValue'
    @max_value = hash['maxValue']
  end
  if hash.has_key? 'minValue'
    @min_value = hash['minValue']
  end
end

#to_hHash

Returns:

  • (Hash)


18
19
20
21
22
23
# File 'lib/onlinepayments/sdk/domain/range_validator.rb', line 18

def to_h
  hash = super
  hash['maxValue'] = @max_value unless @max_value.nil?
  hash['minValue'] = @min_value unless @min_value.nil?
  hash
end