com.google.api.services.content.model.LiasettingsCustomBatchResponseEntry Maven / Gradle / Ivy
/*
* 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.content.model;
/**
* Model definition for LiasettingsCustomBatchResponseEntry.
*
* 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 Content API for Shopping. 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 LiasettingsCustomBatchResponseEntry extends com.google.api.client.json.GenericJson {
/**
* The ID of the request entry to which this entry responds.
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private java.lang.Long batchId;
/**
* A list of errors defined if, and only if, the request failed.
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private Errors errors;
/**
* The list of accessible GMB accounts.
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private GmbAccounts gmbAccounts;
/**
* Identifies what kind of resource this is. Value: the fixed string
* "`content#liasettingsCustomBatchResponseEntry`"
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private java.lang.String kind;
/**
* The retrieved or updated Lia settings.
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private LiaSettings liaSettings;
/**
* The list of POS data providers.
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private java.util.List posDataProviders;
/**
* The ID of the request entry to which this entry responds.
* @return value or {@code null} for none
*/
public java.lang.Long getBatchId() {
return batchId;
}
/**
* The ID of the request entry to which this entry responds.
* @param batchId batchId or {@code null} for none
*/
public LiasettingsCustomBatchResponseEntry setBatchId(java.lang.Long batchId) {
this.batchId = batchId;
return this;
}
/**
* A list of errors defined if, and only if, the request failed.
* @return value or {@code null} for none
*/
public Errors getErrors() {
return errors;
}
/**
* A list of errors defined if, and only if, the request failed.
* @param errors errors or {@code null} for none
*/
public LiasettingsCustomBatchResponseEntry setErrors(Errors errors) {
this.errors = errors;
return this;
}
/**
* The list of accessible GMB accounts.
* @return value or {@code null} for none
*/
public GmbAccounts getGmbAccounts() {
return gmbAccounts;
}
/**
* The list of accessible GMB accounts.
* @param gmbAccounts gmbAccounts or {@code null} for none
*/
public LiasettingsCustomBatchResponseEntry setGmbAccounts(GmbAccounts gmbAccounts) {
this.gmbAccounts = gmbAccounts;
return this;
}
/**
* Identifies what kind of resource this is. Value: the fixed string
* "`content#liasettingsCustomBatchResponseEntry`"
* @return value or {@code null} for none
*/
public java.lang.String getKind() {
return kind;
}
/**
* Identifies what kind of resource this is. Value: the fixed string
* "`content#liasettingsCustomBatchResponseEntry`"
* @param kind kind or {@code null} for none
*/
public LiasettingsCustomBatchResponseEntry setKind(java.lang.String kind) {
this.kind = kind;
return this;
}
/**
* The retrieved or updated Lia settings.
* @return value or {@code null} for none
*/
public LiaSettings getLiaSettings() {
return liaSettings;
}
/**
* The retrieved or updated Lia settings.
* @param liaSettings liaSettings or {@code null} for none
*/
public LiasettingsCustomBatchResponseEntry setLiaSettings(LiaSettings liaSettings) {
this.liaSettings = liaSettings;
return this;
}
/**
* The list of POS data providers.
* @return value or {@code null} for none
*/
public java.util.List getPosDataProviders() {
return posDataProviders;
}
/**
* The list of POS data providers.
* @param posDataProviders posDataProviders or {@code null} for none
*/
public LiasettingsCustomBatchResponseEntry setPosDataProviders(java.util.List posDataProviders) {
this.posDataProviders = posDataProviders;
return this;
}
@Override
public LiasettingsCustomBatchResponseEntry set(String fieldName, Object value) {
return (LiasettingsCustomBatchResponseEntry) super.set(fieldName, value);
}
@Override
public LiasettingsCustomBatchResponseEntry clone() {
return (LiasettingsCustomBatchResponseEntry) super.clone();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy