Class: Google::Apis::DrivelabelsV2::GoogleAppsDriveLabelsV2FieldSelectionOptionsChoiceSchemaCapabilities
- Inherits:
-
Object
- Object
- Google::Apis::DrivelabelsV2::GoogleAppsDriveLabelsV2FieldSelectionOptionsChoiceSchemaCapabilities
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/drivelabels_v2/classes.rb,
lib/google/apis/drivelabels_v2/representations.rb,
lib/google/apis/drivelabels_v2/representations.rb
Overview
The capabilities related to this choice when editing the choice.
Instance Attribute Summary collapse
-
#can_delete ⇒ Boolean
(also: #can_delete?)
Whether the user can delete this choice.
-
#can_disable ⇒ Boolean
(also: #can_disable?)
Whether the user can disable this choice.
-
#can_enable ⇒ Boolean
(also: #can_enable?)
Whether the user can enable this choice.
-
#can_update ⇒ Boolean
(also: #can_update?)
Whether the user can update this choice.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleAppsDriveLabelsV2FieldSelectionOptionsChoiceSchemaCapabilities
constructor
A new instance of GoogleAppsDriveLabelsV2FieldSelectionOptionsChoiceSchemaCapabilities.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleAppsDriveLabelsV2FieldSelectionOptionsChoiceSchemaCapabilities
Returns a new instance of GoogleAppsDriveLabelsV2FieldSelectionOptionsChoiceSchemaCapabilities.
958 959 960 |
# File 'lib/google/apis/drivelabels_v2/classes.rb', line 958 def initialize(**args) update!(**args) end |
Instance Attribute Details
#can_delete ⇒ Boolean Also known as: can_delete?
Whether the user can delete this choice.
Corresponds to the JSON property canDelete
937 938 939 |
# File 'lib/google/apis/drivelabels_v2/classes.rb', line 937 def can_delete @can_delete end |
#can_disable ⇒ Boolean Also known as: can_disable?
Whether the user can disable this choice.
Corresponds to the JSON property canDisable
943 944 945 |
# File 'lib/google/apis/drivelabels_v2/classes.rb', line 943 def can_disable @can_disable end |
#can_enable ⇒ Boolean Also known as: can_enable?
Whether the user can enable this choice.
Corresponds to the JSON property canEnable
949 950 951 |
# File 'lib/google/apis/drivelabels_v2/classes.rb', line 949 def can_enable @can_enable end |
#can_update ⇒ Boolean Also known as: can_update?
Whether the user can update this choice.
Corresponds to the JSON property canUpdate
955 956 957 |
# File 'lib/google/apis/drivelabels_v2/classes.rb', line 955 def can_update @can_update end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
963 964 965 966 967 968 |
# File 'lib/google/apis/drivelabels_v2/classes.rb', line 963 def update!(**args) @can_delete = args[:can_delete] if args.key?(:can_delete) @can_disable = args[:can_disable] if args.key?(:can_disable) @can_enable = args[:can_enable] if args.key?(:can_enable) @can_update = args[:can_update] if args.key?(:can_update) end |