class Google::Apis::ContentV2_1::Css
Information about CSS domain.
Attributes
Output only. Immutable. The CSS domain ID. Corresponds to the JSON property `cssDomainId` @return [Fixnum]
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]
Output only. Immutable. The CSS domain's display name, used when space is constrained. Corresponds to the JSON property `displayName` @return [String]
Output only. Immutable. The CSS domain's full name. Corresponds to the JSON property `fullName` @return [String]
Output only. Immutable. The CSS domain's homepage. Corresponds to the JSON property `homepageUri` @return [String]
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
# File lib/google/apis/content_v2_1/classes.rb, line 2147 def initialize(**args) update!(**args) end
Public Instance Methods
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