Class: Google::Apis::IntegrationsV1alpha::EnterpriseCrmEventbusProtoParamSpecEntryValidationRuleIntRange

Inherits:
Object
  • Object
show all
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

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ EnterpriseCrmEventbusProtoParamSpecEntryValidationRuleIntRange

Returns a new instance of EnterpriseCrmEventbusProtoParamSpecEntryValidationRuleIntRange.



1829
1830
1831
# File 'lib/google/apis/integrations_v1alpha/classes.rb', line 1829

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)


1822
1823
1824
# File 'lib/google/apis/integrations_v1alpha/classes.rb', line 1822

def max
  @max
end

#minFixnum

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

Returns:

  • (Fixnum)


1827
1828
1829
# File 'lib/google/apis/integrations_v1alpha/classes.rb', line 1827

def min
  @min
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1834
1835
1836
1837
# File 'lib/google/apis/integrations_v1alpha/classes.rb', line 1834

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