Class: Google::Apis::PlusDomainsV1::CircleFeed

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
generated/google/apis/plus_domains_v1/classes.rb,
generated/google/apis/plus_domains_v1/representations.rb,
generated/google/apis/plus_domains_v1/representations.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ CircleFeed

Returns a new instance of CircleFeed.



1270
1271
1272
# File 'generated/google/apis/plus_domains_v1/classes.rb', line 1270

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#etagString

ETag of this response for caching purposes. Corresponds to the JSON property etag

Returns:

  • (String)


1231
1232
1233
# File 'generated/google/apis/plus_domains_v1/classes.rb', line 1231

def etag
  @etag
end

#itemsArray<Google::Apis::PlusDomainsV1::Circle>

The circles in this page of results. Corresponds to the JSON property items



1236
1237
1238
# File 'generated/google/apis/plus_domains_v1/classes.rb', line 1236

def items
  @items
end

#kindString

Identifies this resource as a collection of circles. Value: "plus#circleFeed". Corresponds to the JSON property kind

Returns:

  • (String)


1241
1242
1243
# File 'generated/google/apis/plus_domains_v1/classes.rb', line 1241

def kind
  @kind
end

Link to the next page of circles. Corresponds to the JSON property nextLink

Returns:

  • (String)


1246
1247
1248
# File 'generated/google/apis/plus_domains_v1/classes.rb', line 1246

def next_link
  @next_link
end

#next_page_tokenString

The continuation token, which is used to page through large result sets. Provide this value in a subsequent request to return the next page of results. Corresponds to the JSON property nextPageToken

Returns:

  • (String)


1252
1253
1254
# File 'generated/google/apis/plus_domains_v1/classes.rb', line 1252

def next_page_token
  @next_page_token
end

Link to this page of circles. Corresponds to the JSON property selfLink

Returns:

  • (String)


1257
1258
1259
# File 'generated/google/apis/plus_domains_v1/classes.rb', line 1257

def self_link
  @self_link
end

#titleString

The title of this list of resources. Corresponds to the JSON property title

Returns:

  • (String)


1262
1263
1264
# File 'generated/google/apis/plus_domains_v1/classes.rb', line 1262

def title
  @title
end

#total_itemsFixnum

The total number of circles. The number of circles in this response may be smaller due to paging. Corresponds to the JSON property totalItems

Returns:

  • (Fixnum)


1268
1269
1270
# File 'generated/google/apis/plus_domains_v1/classes.rb', line 1268

def total_items
  @total_items
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
# File 'generated/google/apis/plus_domains_v1/classes.rb', line 1275

def update!(**args)
  @etag = args[:etag] if args.key?(:etag)
  @items = args[:items] if args.key?(:items)
  @kind = args[:kind] if args.key?(:kind)
  @next_link = args[:next_link] if args.key?(:next_link)
  @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
  @self_link = args[:self_link] if args.key?(:self_link)
  @title = args[:title] if args.key?(:title)
  @total_items = args[:total_items] if args.key?(:total_items)
end