class Google::Apis::DriveV2::PermissionId
An ID for a user or group as seen in Permission
items.
Attributes
id[RW]
The permission ID. Corresponds to the JSON property `id` @return [String]
kind[RW]
This is always drive#permissionId. Corresponds to the JSON property `kind` @return [String]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/drive_v2/classes.rb, line 3392 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File lib/google/apis/drive_v2/classes.rb, line 3397 def update!(**args) @id = args[:id] if args.key?(:id) @kind = args[:kind] if args.key?(:kind) end