Class: Google::Apis::DriveactivityV2::Owner

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/driveactivity_v2/classes.rb,
lib/google/apis/driveactivity_v2/representations.rb,
lib/google/apis/driveactivity_v2/representations.rb

Overview

Information about the owner of a Drive item.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ Owner

Returns a new instance of Owner.



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

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

Instance Attribute Details

#domainGoogle::Apis::DriveactivityV2::Domain

Information about a domain. Corresponds to the JSON property domain



1167
1168
1169
# File 'lib/google/apis/driveactivity_v2/classes.rb', line 1167

def domain
  @domain
end

#driveGoogle::Apis::DriveactivityV2::DriveReference

A lightweight reference to a shared drive. Corresponds to the JSON property drive



1172
1173
1174
# File 'lib/google/apis/driveactivity_v2/classes.rb', line 1172

def drive
  @drive
end

#team_driveGoogle::Apis::DriveactivityV2::TeamDriveReference

This item is deprecated; please see DriveReference instead. Corresponds to the JSON property teamDrive



1177
1178
1179
# File 'lib/google/apis/driveactivity_v2/classes.rb', line 1177

def team_drive
  @team_drive
end

#userGoogle::Apis::DriveactivityV2::User

Information about an end user. Corresponds to the JSON property user



1182
1183
1184
# File 'lib/google/apis/driveactivity_v2/classes.rb', line 1182

def user
  @user
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1189
1190
1191
1192
1193
1194
# File 'lib/google/apis/driveactivity_v2/classes.rb', line 1189

def update!(**args)
  @domain = args[:domain] if args.key?(:domain)
  @drive = args[:drive] if args.key?(:drive)
  @team_drive = args[:team_drive] if args.key?(:team_drive)
  @user = args[:user] if args.key?(:user)
end