Class: Google::Apis::DriveactivityV2::Owner
- Inherits:
-
Object
- Object
- Google::Apis::DriveactivityV2::Owner
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/driveactivity_v2/classes.rb,
generated/google/apis/driveactivity_v2/representations.rb,
generated/google/apis/driveactivity_v2/representations.rb
Overview
Information about the owner of a Drive item.
Instance Attribute Summary collapse
-
#domain ⇒ Google::Apis::DriveactivityV2::Domain
Information about a domain.
-
#drive ⇒ Google::Apis::DriveactivityV2::DriveReference
A lightweight reference to a shared drive.
-
#team_drive ⇒ Google::Apis::DriveactivityV2::TeamDriveReference
This item is deprecated; please see
DriveReference
instead. -
#user ⇒ Google::Apis::DriveactivityV2::User
Information about an end user.
Instance Method Summary collapse
-
#initialize(**args) ⇒ Owner
constructor
A new instance of Owner.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ Owner
Returns a new instance of Owner.
981 982 983 |
# File 'generated/google/apis/driveactivity_v2/classes.rb', line 981 def initialize(**args) update!(**args) end |
Instance Attribute Details
#domain ⇒ Google::Apis::DriveactivityV2::Domain
Information about a domain.
Corresponds to the JSON property domain
964 965 966 |
# File 'generated/google/apis/driveactivity_v2/classes.rb', line 964 def domain @domain end |
#drive ⇒ Google::Apis::DriveactivityV2::DriveReference
A lightweight reference to a shared drive.
Corresponds to the JSON property drive
969 970 971 |
# File 'generated/google/apis/driveactivity_v2/classes.rb', line 969 def drive @drive end |
#team_drive ⇒ Google::Apis::DriveactivityV2::TeamDriveReference
This item is deprecated; please see DriveReference
instead.
Corresponds to the JSON property teamDrive
974 975 976 |
# File 'generated/google/apis/driveactivity_v2/classes.rb', line 974 def team_drive @team_drive end |
#user ⇒ Google::Apis::DriveactivityV2::User
Information about an end user.
Corresponds to the JSON property user
979 980 981 |
# File 'generated/google/apis/driveactivity_v2/classes.rb', line 979 def user @user end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
986 987 988 989 990 991 |
# File 'generated/google/apis/driveactivity_v2/classes.rb', line 986 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 |