class Google::Apis::DriveactivityV2::Group

Information about a group.

Attributes

email[RW]

The email address of the group. Corresponds to the JSON property `email` @return [String]

title[RW]

The title of the group. Corresponds to the JSON property `title` @return [String]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/driveactivity_v2/classes.rb, line 830
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/driveactivity_v2/classes.rb, line 835
def update!(**args)
  @email = args[:email] if args.key?(:email)
  @title = args[:title] if args.key?(:title)
end