com.google.api.services.consumersurveys.model.MobileAppPanelsListResponse 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: 2016-10-17 16:43:55 UTC)
* on 2016-11-16 at 05:24:47 UTC
* Modify at your own risk.
*/
package com.google.api.services.consumersurveys.model;
/**
* Model definition for MobileAppPanelsListResponse.
*
* 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 Consumer Surveys 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 MobileAppPanelsListResponse extends com.google.api.client.json.GenericJson {
/**
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private PageInfo pageInfo;
/**
* Unique request ID used for logging and debugging. Please include in any error reporting or
* troubleshooting requests.
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private java.lang.String requestId;
/**
* An individual predefined panel of Opinion Rewards mobile users.
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private java.util.List resources;
static {
// hack to force ProGuard to consider MobileAppPanel 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(MobileAppPanel.class);
}
/**
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private TokenPagination tokenPagination;
/**
* @return value or {@code null} for none
*/
public PageInfo getPageInfo() {
return pageInfo;
}
/**
* @param pageInfo pageInfo or {@code null} for none
*/
public MobileAppPanelsListResponse setPageInfo(PageInfo pageInfo) {
this.pageInfo = pageInfo;
return this;
}
/**
* Unique request ID used for logging and debugging. Please include in any error reporting or
* troubleshooting requests.
* @return value or {@code null} for none
*/
public java.lang.String getRequestId() {
return requestId;
}
/**
* Unique request ID used for logging and debugging. Please include in any error reporting or
* troubleshooting requests.
* @param requestId requestId or {@code null} for none
*/
public MobileAppPanelsListResponse setRequestId(java.lang.String requestId) {
this.requestId = requestId;
return this;
}
/**
* An individual predefined panel of Opinion Rewards mobile users.
* @return value or {@code null} for none
*/
public java.util.List getResources() {
return resources;
}
/**
* An individual predefined panel of Opinion Rewards mobile users.
* @param resources resources or {@code null} for none
*/
public MobileAppPanelsListResponse setResources(java.util.List resources) {
this.resources = resources;
return this;
}
/**
* @return value or {@code null} for none
*/
public TokenPagination getTokenPagination() {
return tokenPagination;
}
/**
* @param tokenPagination tokenPagination or {@code null} for none
*/
public MobileAppPanelsListResponse setTokenPagination(TokenPagination tokenPagination) {
this.tokenPagination = tokenPagination;
return this;
}
@Override
public MobileAppPanelsListResponse set(String fieldName, Object value) {
return (MobileAppPanelsListResponse) super.set(fieldName, value);
}
@Override
public MobileAppPanelsListResponse clone() {
return (MobileAppPanelsListResponse) super.clone();
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy