Class: Google::Apis::DrivelabelsV2beta::GoogleAppsDriveLabelsV2betaSelectionLimits
- Inherits:
-
Object
- Object
- Google::Apis::DrivelabelsV2beta::GoogleAppsDriveLabelsV2betaSelectionLimits
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/drivelabels_v2beta/classes.rb,
lib/google/apis/drivelabels_v2beta/representations.rb,
lib/google/apis/drivelabels_v2beta/representations.rb
Overview
Limits for selection Field type.
Instance Attribute Summary collapse
-
#list_limits ⇒ Google::Apis::DrivelabelsV2beta::GoogleAppsDriveLabelsV2betaListLimits
Limits for list-variant of a Field type.
-
#max_choices ⇒ Fixnum
The max number of choices.
-
#max_deleted_choices ⇒ Fixnum
Maximum number of deleted choices.
-
#max_display_name_length ⇒ Fixnum
Maximum length for display name.
-
#max_id_length ⇒ Fixnum
Maximum ID length for a selection options.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleAppsDriveLabelsV2betaSelectionLimits
constructor
A new instance of GoogleAppsDriveLabelsV2betaSelectionLimits.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleAppsDriveLabelsV2betaSelectionLimits
Returns a new instance of GoogleAppsDriveLabelsV2betaSelectionLimits.
2988 2989 2990 |
# File 'lib/google/apis/drivelabels_v2beta/classes.rb', line 2988 def initialize(**args) update!(**args) end |
Instance Attribute Details
#list_limits ⇒ Google::Apis::DrivelabelsV2beta::GoogleAppsDriveLabelsV2betaListLimits
Limits for list-variant of a Field type.
Corresponds to the JSON property listLimits
2966 2967 2968 |
# File 'lib/google/apis/drivelabels_v2beta/classes.rb', line 2966 def list_limits @list_limits end |
#max_choices ⇒ Fixnum
The max number of choices.
Corresponds to the JSON property maxChoices
2971 2972 2973 |
# File 'lib/google/apis/drivelabels_v2beta/classes.rb', line 2971 def max_choices @max_choices end |
#max_deleted_choices ⇒ Fixnum
Maximum number of deleted choices.
Corresponds to the JSON property maxDeletedChoices
2976 2977 2978 |
# File 'lib/google/apis/drivelabels_v2beta/classes.rb', line 2976 def max_deleted_choices @max_deleted_choices end |
#max_display_name_length ⇒ Fixnum
Maximum length for display name.
Corresponds to the JSON property maxDisplayNameLength
2981 2982 2983 |
# File 'lib/google/apis/drivelabels_v2beta/classes.rb', line 2981 def max_display_name_length @max_display_name_length end |
#max_id_length ⇒ Fixnum
Maximum ID length for a selection options.
Corresponds to the JSON property maxIdLength
2986 2987 2988 |
# File 'lib/google/apis/drivelabels_v2beta/classes.rb', line 2986 def max_id_length @max_id_length end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2993 2994 2995 2996 2997 2998 2999 |
# File 'lib/google/apis/drivelabels_v2beta/classes.rb', line 2993 def update!(**args) @list_limits = args[:list_limits] if args.key?(:list_limits) @max_choices = args[:max_choices] if args.key?(:max_choices) @max_deleted_choices = args[:max_deleted_choices] if args.key?(:max_deleted_choices) @max_display_name_length = args[:max_display_name_length] if args.key?(:max_display_name_length) @max_id_length = args[:max_id_length] if args.key?(:max_id_length) end |