class Google::Apis::PlusDomainsV1::Circle

Attributes

description[RW]

The description of this circle. Corresponds to the JSON property `description` @return [String]

display_name[RW]

The circle name. Corresponds to the JSON property `displayName` @return [String]

etag[RW]

ETag of this response for caching purposes. Corresponds to the JSON property `etag` @return [String]

id[RW]

The ID of the circle. Corresponds to the JSON property `id` @return [String]

kind[RW]

Identifies this resource as a circle. Value: “plus#circle”. Corresponds to the JSON property `kind` @return [String]

people[RW]

The people in this circle. Corresponds to the JSON property `people` @return [Google::Apis::PlusDomainsV1::Circle::People]

Public Class Methods

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

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File generated/google/apis/plus_domains_v1/classes.rb, line 1194
def update!(**args)
  @description = args[:description] if args.key?(:description)
  @display_name = args[:display_name] if args.key?(:display_name)
  @etag = args[:etag] if args.key?(:etag)
  @id = args[:id] if args.key?(:id)
  @kind = args[:kind] if args.key?(:kind)
  @people = args[:people] if args.key?(:people)
  @self_link = args[:self_link] if args.key?(:self_link)
end