class Google::Apis::PlusDomainsV1::Audience

Attributes

etag[RW]

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

item[RW]

The access control list entry. Corresponds to the JSON property `item` @return [Google::Apis::PlusDomainsV1::PlusDomainsAclentryResource]

kind[RW]

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

member_count[RW]

The number of people in this circle. This only applies if entity_type is CIRCLE. Corresponds to the JSON property `memberCount` @return [Fixnum]

visibility[RW]

The circle members' visibility as chosen by the owner of the circle. This only applies for items with “item.type” equals “circle”. Possible values are:

  • “public” - Members are visible to the public.

  • “limited” - Members are visible to a limited audience.

  • “private” - Members are visible to the owner only.

Corresponds to the JSON property `visibility` @return [String]

Public Class Methods

new(**args) click to toggle source
# File generated/google/apis/plus_domains_v1/classes.rb, line 1090
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 1095
def update!(**args)
  @etag = args[:etag] if args.key?(:etag)
  @item = args[:item] if args.key?(:item)
  @kind = args[:kind] if args.key?(:kind)
  @member_count = args[:member_count] if args.key?(:member_count)
  @visibility = args[:visibility] if args.key?(:visibility)
end