Class: Google::Apis::DrivelabelsV2::GoogleAppsDriveLabelsV2LabelAppliedCapabilities

Inherits:
Object
  • Object
show all
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 a user has on this label's applied metadata.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleAppsDriveLabelsV2LabelAppliedCapabilities

Returns a new instance of GoogleAppsDriveLabelsV2LabelAppliedCapabilities.



1199
1200
1201
# File 'lib/google/apis/drivelabels_v2/classes.rb', line 1199

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

Instance Attribute Details

#can_applyBoolean Also known as: can_apply?

Whether the user can apply this label to items. Corresponds to the JSON property canApply

Returns:

  • (Boolean)


1184
1185
1186
# File 'lib/google/apis/drivelabels_v2/classes.rb', line 1184

def can_apply
  @can_apply
end

#can_readBoolean Also known as: can_read?

Whether the user can read applied metadata related to this label. Corresponds to the JSON property canRead

Returns:

  • (Boolean)


1190
1191
1192
# File 'lib/google/apis/drivelabels_v2/classes.rb', line 1190

def can_read
  @can_read
end

#can_removeBoolean Also known as: can_remove?

Whether the user can remove this label from items. Corresponds to the JSON property canRemove

Returns:

  • (Boolean)


1196
1197
1198
# File 'lib/google/apis/drivelabels_v2/classes.rb', line 1196

def can_remove
  @can_remove
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1204
1205
1206
1207
1208
# File 'lib/google/apis/drivelabels_v2/classes.rb', line 1204

def update!(**args)
  @can_apply = args[:can_apply] if args.key?(:can_apply)
  @can_read = args[:can_read] if args.key?(:can_read)
  @can_remove = args[:can_remove] if args.key?(:can_remove)
end