class Nucleo::Models::CheckTypes::Count

Public Instance Methods

max_count() click to toggle source

Returns the max allowed count

@return [String]

# File lib/nucleo/models/check_types/count.rb, line 20
def max_count
  Integer(@attributes['max_count'])
end
min_count() click to toggle source

Returns the min allowed count

@return [String]

# File lib/nucleo/models/check_types/count.rb, line 13
def min_count
  Integer(@attributes['min_count'])
end
type() click to toggle source
# File lib/nucleo/models/check_types/count.rb, line 6
def type
  'count'
end