Class: Google::Apis::IntegrationsV1::EnterpriseCrmEventbusProtoParamSpecEntryValidationRuleIntRange

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/integrations_v1/classes.rb,
lib/google/apis/integrations_v1/representations.rb,
lib/google/apis/integrations_v1/representations.rb

Overview

Range used to validate longs and ints.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ EnterpriseCrmEventbusProtoParamSpecEntryValidationRuleIntRange

Returns a new instance of EnterpriseCrmEventbusProtoParamSpecEntryValidationRuleIntRange.



2014
2015
2016
# File 'lib/google/apis/integrations_v1/classes.rb', line 2014

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#maxFixnum

The inclusive maximum of the acceptable range. Corresponds to the JSON property max

Returns:

  • (Fixnum)


2007
2008
2009
# File 'lib/google/apis/integrations_v1/classes.rb', line 2007

def max
  @max
end

#minFixnum

The inclusive minimum of the acceptable range. Corresponds to the JSON property min

Returns:

  • (Fixnum)


2012
2013
2014
# File 'lib/google/apis/integrations_v1/classes.rb', line 2012

def min
  @min
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2019
2020
2021
2022
# File 'lib/google/apis/integrations_v1/classes.rb', line 2019

def update!(**args)
  @max = args[:max] if args.key?(:max)
  @min = args[:min] if args.key?(:min)
end