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.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ Owner
Returns a new instance of Owner
978 979 980 |
# File 'generated/google/apis/driveactivity_v2/classes.rb', line 978 def initialize(**args) update!(**args) end |
Instance Attribute Details
#domain ⇒ Google::Apis::DriveactivityV2::Domain
Information about a domain.
Corresponds to the JSON property domain
961 962 963 |
# File 'generated/google/apis/driveactivity_v2/classes.rb', line 961 def domain @domain end |
#drive ⇒ Google::Apis::DriveactivityV2::DriveReference
A lightweight reference to a shared drive.
Corresponds to the JSON property drive
966 967 968 |
# File 'generated/google/apis/driveactivity_v2/classes.rb', line 966 def drive @drive end |
#team_drive ⇒ Google::Apis::DriveactivityV2::TeamDriveReference
This item is deprecated; please see DriveReference
instead.
Corresponds to the JSON property teamDrive
971 972 973 |
# File 'generated/google/apis/driveactivity_v2/classes.rb', line 971 def team_drive @team_drive end |
#user ⇒ Google::Apis::DriveactivityV2::User
Information about an end user.
Corresponds to the JSON property user
976 977 978 |
# File 'generated/google/apis/driveactivity_v2/classes.rb', line 976 def user @user end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
983 984 985 986 987 988 |
# File 'generated/google/apis/driveactivity_v2/classes.rb', line 983 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 |