All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.google.api.services.analytics.model.Accounts Maven / Gradle / Ivy

There is a newer version: v3-rev20190807-2.0.0
Show newest version
/*
 * 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://github.com/googleapis/google-api-java-client-services/
 * Modify at your own risk.
 */

package com.google.api.services.analytics.model;

/**
 * An account collection provides a list of Analytics accounts to which a user has access. The
 * account collection is the entry point to all management information. Each resource in the
 * collection corresponds to a single Analytics account.
 *
 * 

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 Google Analytics API. For a detailed explanation see: * https://developers.google.com/api-client-library/java/google-http-java-client/json *

* * @author Google, Inc. */ @SuppressWarnings("javadoc") public final class Accounts extends com.google.api.client.json.GenericJson { /** * A list of accounts. * 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 https://github.com/google/google-api-java-client/issues/543 com.google.api.client.util.Data.nullOf(Account.class); } /** * The maximum number of entries the response can contain, regardless of the actual number of * entries returned. Its value ranges from 1 to 1000 with a value of 1000 by default, or otherwise * specified by the max-results query parameter. * The value may be {@code null}. */ @com.google.api.client.util.Key private java.lang.Integer itemsPerPage; /** * Collection type. * The value may be {@code null}. */ @com.google.api.client.util.Key private java.lang.String kind; /** * Next link for this account collection. * The value may be {@code null}. */ @com.google.api.client.util.Key private java.lang.String nextLink; /** * Previous link for this account collection. * The value may be {@code null}. */ @com.google.api.client.util.Key private java.lang.String previousLink; /** * The starting index of the entries, which is 1 by default or otherwise specified by the start- * index query parameter. * The value may be {@code null}. */ @com.google.api.client.util.Key private java.lang.Integer startIndex; /** * The total number of results for the query, regardless of the number of results in the response. * The value may be {@code null}. */ @com.google.api.client.util.Key private java.lang.Integer totalResults; /** * Email ID of the authenticated user * The value may be {@code null}. */ @com.google.api.client.util.Key private java.lang.String username; /** * A list of accounts. * @return value or {@code null} for none */ public java.util.List getItems() { return items; } /** * A list of accounts. * @param items items or {@code null} for none */ public Accounts setItems(java.util.List items) { this.items = items; return this; } /** * The maximum number of entries the response can contain, regardless of the actual number of * entries returned. Its value ranges from 1 to 1000 with a value of 1000 by default, or otherwise * specified by the max-results query parameter. * @return value or {@code null} for none */ public java.lang.Integer getItemsPerPage() { return itemsPerPage; } /** * The maximum number of entries the response can contain, regardless of the actual number of * entries returned. Its value ranges from 1 to 1000 with a value of 1000 by default, or otherwise * specified by the max-results query parameter. * @param itemsPerPage itemsPerPage or {@code null} for none */ public Accounts setItemsPerPage(java.lang.Integer itemsPerPage) { this.itemsPerPage = itemsPerPage; return this; } /** * Collection type. * @return value or {@code null} for none */ public java.lang.String getKind() { return kind; } /** * Collection type. * @param kind kind or {@code null} for none */ public Accounts setKind(java.lang.String kind) { this.kind = kind; return this; } /** * Next link for this account collection. * @return value or {@code null} for none */ public java.lang.String getNextLink() { return nextLink; } /** * Next link for this account collection. * @param nextLink nextLink or {@code null} for none */ public Accounts setNextLink(java.lang.String nextLink) { this.nextLink = nextLink; return this; } /** * Previous link for this account collection. * @return value or {@code null} for none */ public java.lang.String getPreviousLink() { return previousLink; } /** * Previous link for this account collection. * @param previousLink previousLink or {@code null} for none */ public Accounts setPreviousLink(java.lang.String previousLink) { this.previousLink = previousLink; return this; } /** * The starting index of the entries, which is 1 by default or otherwise specified by the start- * index query parameter. * @return value or {@code null} for none */ public java.lang.Integer getStartIndex() { return startIndex; } /** * The starting index of the entries, which is 1 by default or otherwise specified by the start- * index query parameter. * @param startIndex startIndex or {@code null} for none */ public Accounts setStartIndex(java.lang.Integer startIndex) { this.startIndex = startIndex; return this; } /** * The total number of results for the query, regardless of the number of results in the response. * @return value or {@code null} for none */ public java.lang.Integer getTotalResults() { return totalResults; } /** * The total number of results for the query, regardless of the number of results in the response. * @param totalResults totalResults or {@code null} for none */ public Accounts setTotalResults(java.lang.Integer totalResults) { this.totalResults = totalResults; return this; } /** * Email ID of the authenticated user * @return value or {@code null} for none */ public java.lang.String getUsername() { return username; } /** * Email ID of the authenticated user * @param username username or {@code null} for none */ public Accounts setUsername(java.lang.String username) { this.username = username; return this; } @Override public Accounts set(String fieldName, Object value) { return (Accounts) super.set(fieldName, value); } @Override public Accounts clone() { return (Accounts) super.clone(); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy