Class: Google::Apis::PlusDomainsV1::AudiencesFeed
- Inherits:
-
Object
- Object
- Google::Apis::PlusDomainsV1::AudiencesFeed
- 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::Audience>
The audiences in this result.
-
#kind ⇒ String
Identifies this resource as a collection of audiences.
-
#next_page_token ⇒ String
The continuation token, which is used to page through large result sets.
-
#total_items ⇒ Fixnum
The total number of ACL entries.
Instance Method Summary collapse
-
#initialize(**args) ⇒ AudiencesFeed
constructor
A new instance of AudiencesFeed.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ AudiencesFeed
Returns a new instance of AudiencesFeed
1136 1137 1138 |
# File 'generated/google/apis/plus_domains_v1/classes.rb', line 1136 def initialize(**args) update!(**args) end |
Instance Attribute Details
#etag ⇒ String
ETag of this response for caching purposes.
Corresponds to the JSON property etag
1111 1112 1113 |
# File 'generated/google/apis/plus_domains_v1/classes.rb', line 1111 def etag @etag end |
#items ⇒ Array<Google::Apis::PlusDomainsV1::Audience>
The audiences in this result.
Corresponds to the JSON property items
1116 1117 1118 |
# File 'generated/google/apis/plus_domains_v1/classes.rb', line 1116 def items @items end |
#kind ⇒ String
Identifies this resource as a collection of audiences. Value: "plus#
audienceFeed".
Corresponds to the JSON property kind
1122 1123 1124 |
# File 'generated/google/apis/plus_domains_v1/classes.rb', line 1122 def kind @kind 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
1128 1129 1130 |
# File 'generated/google/apis/plus_domains_v1/classes.rb', line 1128 def next_page_token @next_page_token end |
#total_items ⇒ Fixnum
The total number of ACL entries. The number of entries in this response may be
smaller due to paging.
Corresponds to the JSON property totalItems
1134 1135 1136 |
# File 'generated/google/apis/plus_domains_v1/classes.rb', line 1134 def total_items @total_items end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1141 1142 1143 1144 1145 1146 1147 |
# File 'generated/google/apis/plus_domains_v1/classes.rb', line 1141 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_page_token = args[:next_page_token] if args.key?(:next_page_token) @total_items = args[:total_items] if args.key?(:total_items) end |