Class: Google::Apis::AdsenseV1_4::UrlChannels
- Inherits:
-
Object
- Object
- Google::Apis::AdsenseV1_4::UrlChannels
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/adsense_v1_4/classes.rb,
generated/google/apis/adsense_v1_4/representations.rb,
generated/google/apis/adsense_v1_4/representations.rb
Instance Attribute Summary collapse
-
#etag ⇒ String
ETag of this response for caching purposes.
-
#items ⇒ Array<Google::Apis::AdsenseV1_4::UrlChannel>
The URL channels returned in this list response.
-
#kind ⇒ String
Kind of list this is, in this case adsense#urlChannels.
-
#next_page_token ⇒ String
Continuation token used to page through URL channels.
Instance Method Summary collapse
-
#initialize(**args) ⇒ UrlChannels
constructor
A new instance of UrlChannels.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ UrlChannels
Returns a new instance of UrlChannels
1278 1279 1280 |
# File 'generated/google/apis/adsense_v1_4/classes.rb', line 1278 def initialize(**args) update!(**args) end |
Instance Attribute Details
#etag ⇒ String
ETag of this response for caching purposes.
Corresponds to the JSON property etag
1260 1261 1262 |
# File 'generated/google/apis/adsense_v1_4/classes.rb', line 1260 def etag @etag end |
#items ⇒ Array<Google::Apis::AdsenseV1_4::UrlChannel>
The URL channels returned in this list response.
Corresponds to the JSON property items
1265 1266 1267 |
# File 'generated/google/apis/adsense_v1_4/classes.rb', line 1265 def items @items end |
#kind ⇒ String
Kind of list this is, in this case adsense#urlChannels.
Corresponds to the JSON property kind
1270 1271 1272 |
# File 'generated/google/apis/adsense_v1_4/classes.rb', line 1270 def kind @kind end |
#next_page_token ⇒ String
Continuation token used to page through URL channels. To retrieve the next
page of results, set the next request's "pageToken" value to this.
Corresponds to the JSON property nextPageToken
1276 1277 1278 |
# File 'generated/google/apis/adsense_v1_4/classes.rb', line 1276 def next_page_token @next_page_token end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1283 1284 1285 1286 1287 1288 |
# File 'generated/google/apis/adsense_v1_4/classes.rb', line 1283 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) end |