class Google::Apis::DriveactivityV2::Domain

Information about a domain.

Attributes

legacy_id[RW]

An opaque string used to identify this domain. Corresponds to the JSON property `legacyId` @return [String]

name[RW]

The name of the domain, e.g. `google.com`. Corresponds to the JSON property `name` @return [String]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/driveactivity_v2/classes.rb, line 461
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 466
def update!(**args)
  @legacy_id = args[:legacy_id] if args.key?(:legacy_id)
  @name = args[:name] if args.key?(:name)
end