Class: Google::Apis::PlusDomainsV1::CircleFeed
- Inherits:
-
Object
- Object
- Google::Apis::PlusDomainsV1::CircleFeed
- 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
-
#etag ⇒ String
ETag of this response for caching purposes.
-
#items ⇒ Array<Google::Apis::PlusDomainsV1::Circle>
The circles in this page of results.
-
#kind ⇒ String
Identifies this resource as a collection of circles.
-
#next_link ⇒ String
Link to the next page of circles.
-
#next_page_token ⇒ String
The continuation token, which is used to page through large result sets.
-
#self_link ⇒ String
Link to this page of circles.
-
#title ⇒ String
The title of this list of resources.
-
#total_items ⇒ Fixnum
The total number of circles.
Instance Method Summary collapse
-
#initialize(**args) ⇒ CircleFeed
constructor
A new instance of CircleFeed.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
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
#etag ⇒ String
ETag of this response for caching purposes.
Corresponds to the JSON property etag
1231 1232 1233 |
# File 'generated/google/apis/plus_domains_v1/classes.rb', line 1231 def etag @etag end |
#items ⇒ Array<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 |
#kind ⇒ String
Identifies this resource as a collection of circles. Value: "plus#circleFeed".
Corresponds to the JSON property kind
1241 1242 1243 |
# File 'generated/google/apis/plus_domains_v1/classes.rb', line 1241 def kind @kind end |
#next_link ⇒ String
Link to the next page of circles.
Corresponds to the JSON property nextLink
1246 1247 1248 |
# File 'generated/google/apis/plus_domains_v1/classes.rb', line 1246 def next_link @next_link end |
#next_page_token ⇒ String
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
1252 1253 1254 |
# File 'generated/google/apis/plus_domains_v1/classes.rb', line 1252 def next_page_token @next_page_token end |
#self_link ⇒ String
Link to this page of circles.
Corresponds to the JSON property selfLink
1257 1258 1259 |
# File 'generated/google/apis/plus_domains_v1/classes.rb', line 1257 def self_link @self_link end |
#title ⇒ String
The title of this list of resources.
Corresponds to the JSON property title
1262 1263 1264 |
# File 'generated/google/apis/plus_domains_v1/classes.rb', line 1262 def title @title end |
#total_items ⇒ Fixnum
The total number of circles. The number of circles in this response may be
smaller due to paging.
Corresponds to the JSON property totalItems
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 |