class Google::Apis::ContentV2_1::Css

Information about CSS domain.

Attributes

css_domain_id[RW]

Output only. Immutable. The CSS domain ID. Corresponds to the JSON property `cssDomainId` @return [Fixnum]

css_group_id[RW]

Output only. Immutable. The ID of the CSS group this CSS domain is affiliated with. Only populated for CSS group users. Corresponds to the JSON property `cssGroupId` @return [Fixnum]

display_name[RW]

Output only. Immutable. The CSS domain's display name, used when space is constrained. Corresponds to the JSON property `displayName` @return [String]

full_name[RW]

Output only. Immutable. The CSS domain's full name. Corresponds to the JSON property `fullName` @return [String]

homepage_uri[RW]

Output only. Immutable. The CSS domain's homepage. Corresponds to the JSON property `homepageUri` @return [String]

label_ids[RW]

A list of label IDs that are assigned to this CSS domain by its CSS group. Only populated for CSS group users. Corresponds to the JSON property `labelIds` @return [Array<Fixnum>]

Public Class Methods

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

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/content_v2_1/classes.rb, line 2152
def update!(**args)
  @css_domain_id = args[:css_domain_id] if args.key?(:css_domain_id)
  @css_group_id = args[:css_group_id] if args.key?(:css_group_id)
  @display_name = args[:display_name] if args.key?(:display_name)
  @full_name = args[:full_name] if args.key?(:full_name)
  @homepage_uri = args[:homepage_uri] if args.key?(:homepage_uri)
  @label_ids = args[:label_ids] if args.key?(:label_ids)
end