com.google.api.services.analytics.model.Profiles 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: 2014-11-17 18:43:33 UTC)
* on 2014-11-20 at 21:55:17 UTC
* Modify at your own risk.
*/
package com.google.api.services.analytics.model;
/**
* A view (profile) collection lists Analytics views (profiles) to which the user has access. Each
* resource in the collection corresponds to a single Analytics view (profile).
*
* 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:
* http://code.google.com/p/google-http-java-client/wiki/JSON
*
*
* @author Google, Inc.
*/
@SuppressWarnings("javadoc")
public final class Profiles extends com.google.api.client.json.GenericJson {
/**
* A list of views (profiles).
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private java.util.List items;
static {
// hack to force ProGuard to consider Profile 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(Profile.class);
}
/**
* The maximum number of resources the response can contain, regardless of the actual number of
* resources 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;
/**
* Link to next page for this view (profile) collection.
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private java.lang.String nextLink;
/**
* Link to previous page for this view (profile) collection.
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private java.lang.String previousLink;
/**
* The starting index of the resources, 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 views (profiles).
* @return value or {@code null} for none
*/
public java.util.List getItems() {
return items;
}
/**
* A list of views (profiles).
* @param items items or {@code null} for none
*/
public Profiles setItems(java.util.List items) {
this.items = items;
return this;
}
/**
* The maximum number of resources the response can contain, regardless of the actual number of
* resources 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 resources the response can contain, regardless of the actual number of
* resources 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 Profiles 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 Profiles setKind(java.lang.String kind) {
this.kind = kind;
return this;
}
/**
* Link to next page for this view (profile) collection.
* @return value or {@code null} for none
*/
public java.lang.String getNextLink() {
return nextLink;
}
/**
* Link to next page for this view (profile) collection.
* @param nextLink nextLink or {@code null} for none
*/
public Profiles setNextLink(java.lang.String nextLink) {
this.nextLink = nextLink;
return this;
}
/**
* Link to previous page for this view (profile) collection.
* @return value or {@code null} for none
*/
public java.lang.String getPreviousLink() {
return previousLink;
}
/**
* Link to previous page for this view (profile) collection.
* @param previousLink previousLink or {@code null} for none
*/
public Profiles setPreviousLink(java.lang.String previousLink) {
this.previousLink = previousLink;
return this;
}
/**
* The starting index of the resources, 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 resources, which is 1 by default or otherwise specified by the start-
* index query parameter.
* @param startIndex startIndex or {@code null} for none
*/
public Profiles 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 Profiles 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 Profiles setUsername(java.lang.String username) {
this.username = username;
return this;
}
@Override
public Profiles set(String fieldName, Object value) {
return (Profiles) super.set(fieldName, value);
}
@Override
public Profiles clone() {
return (Profiles) super.clone();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy