com.google.api.services.adsense.model.Accounts Maven / Gradle / Ivy
/*
* Copyright 2010 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except
* in compliance with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software distributed under the License
* is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
* or implied. See the License for the specific language governing permissions and limitations under
* the License.
*/
/*
* This code was generated by https://code.google.com/p/google-apis-client-generator/
* (build: 2018-10-08 17:45:39 UTC)
* on 2020-04-06 at 21:56:19 UTC
* Modify at your own risk.
*/
package com.google.api.services.adsense.model;
/**
* Model definition for Accounts.
*
* This is the Java data model class that specifies how to parse/serialize into the JSON that is
* transmitted over HTTP when working with the AdSense Management API. For a detailed explanation
* see:
* http://code.google.com/p/google-http-java-client/wiki/JSON
*
*
* @author Google, Inc.
*/
@SuppressWarnings("javadoc")
public final class Accounts extends com.google.api.client.json.GenericJson {
/**
* ETag of this response for caching purposes.
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private java.lang.String etag;
/**
* The accounts returned in this list response.
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private java.util.List items;
static {
// hack to force ProGuard to consider Account used, since otherwise it would be stripped out
// see http://code.google.com/p/google-api-java-client/issues/detail?id=528
com.google.api.client.util.Data.nullOf(Account.class);
}
/**
* Kind of list this is, in this case adsense#accounts.
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private java.lang.String kind;
/**
* Continuation token used to page through accounts. To retrieve the next page of results, set the
* next request's "pageToken" value to this.
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private java.lang.String nextPageToken;
/**
* ETag of this response for caching purposes.
* @return value or {@code null} for none
*/
public java.lang.String getEtag() {
return etag;
}
/**
* ETag of this response for caching purposes.
* @param etag etag or {@code null} for none
*/
public Accounts setEtag(java.lang.String etag) {
this.etag = etag;
return this;
}
/**
* The accounts returned in this list response.
* @return value or {@code null} for none
*/
public java.util.List getItems() {
return items;
}
/**
* The accounts returned in this list response.
* @param items items or {@code null} for none
*/
public Accounts setItems(java.util.List items) {
this.items = items;
return this;
}
/**
* Kind of list this is, in this case adsense#accounts.
* @return value or {@code null} for none
*/
public java.lang.String getKind() {
return kind;
}
/**
* Kind of list this is, in this case adsense#accounts.
* @param kind kind or {@code null} for none
*/
public Accounts setKind(java.lang.String kind) {
this.kind = kind;
return this;
}
/**
* Continuation token used to page through accounts. To retrieve the next page of results, set the
* next request's "pageToken" value to this.
* @return value or {@code null} for none
*/
public java.lang.String getNextPageToken() {
return nextPageToken;
}
/**
* Continuation token used to page through accounts. To retrieve the next page of results, set the
* next request's "pageToken" value to this.
* @param nextPageToken nextPageToken or {@code null} for none
*/
public Accounts setNextPageToken(java.lang.String nextPageToken) {
this.nextPageToken = nextPageToken;
return this;
}
@Override
public Accounts set(String fieldName, Object value) {
return (Accounts) super.set(fieldName, value);
}
@Override
public Accounts clone() {
return (Accounts) super.clone();
}
}