Class: Google::Apis::IntegrationsV1alpha::EnterpriseCrmEventbusProtoParamSpecEntryValidationRuleIntRange
- Inherits:
-
Object
- Object
- Google::Apis::IntegrationsV1alpha::EnterpriseCrmEventbusProtoParamSpecEntryValidationRuleIntRange
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/integrations_v1alpha/classes.rb,
lib/google/apis/integrations_v1alpha/representations.rb,
lib/google/apis/integrations_v1alpha/representations.rb
Overview
Range used to validate longs and ints.
Instance Attribute Summary collapse
-
#max ⇒ Fixnum
The inclusive maximum of the acceptable range.
-
#min ⇒ Fixnum
The inclusive minimum of the acceptable range.
Instance Method Summary collapse
-
#initialize(**args) ⇒ EnterpriseCrmEventbusProtoParamSpecEntryValidationRuleIntRange
constructor
A new instance of EnterpriseCrmEventbusProtoParamSpecEntryValidationRuleIntRange.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ EnterpriseCrmEventbusProtoParamSpecEntryValidationRuleIntRange
Returns a new instance of EnterpriseCrmEventbusProtoParamSpecEntryValidationRuleIntRange.
2008 2009 2010 |
# File 'lib/google/apis/integrations_v1alpha/classes.rb', line 2008 def initialize(**args) update!(**args) end |
Instance Attribute Details
#max ⇒ Fixnum
The inclusive maximum of the acceptable range.
Corresponds to the JSON property max
2001 2002 2003 |
# File 'lib/google/apis/integrations_v1alpha/classes.rb', line 2001 def max @max end |
#min ⇒ Fixnum
The inclusive minimum of the acceptable range.
Corresponds to the JSON property min
2006 2007 2008 |
# File 'lib/google/apis/integrations_v1alpha/classes.rb', line 2006 def min @min end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2013 2014 2015 2016 |
# File 'lib/google/apis/integrations_v1alpha/classes.rb', line 2013 def update!(**args) @max = args[:max] if args.key?(:max) @min = args[:min] if args.key?(:min) end |