com.google.api.services.integrations.v1alpha.model.EnterpriseCrmCardsCellValue 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.integrations.v1alpha.model;
/**
* Model definition for EnterpriseCrmCardsCellValue.
*
* 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 Application Integration 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 EnterpriseCrmCardsCellValue extends com.google.api.client.json.GenericJson {
/**
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private java.lang.Boolean booleanValue;
/**
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private java.lang.Double doubleValue;
/**
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private GoogleProtobufEmpty empty;
/**
* The value may be {@code null}.
*/
@com.google.api.client.util.Key @com.google.api.client.json.JsonString
private java.lang.Long longValue;
/**
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private java.lang.String stringValue;
/**
* @return value or {@code null} for none
*/
public java.lang.Boolean getBooleanValue() {
return booleanValue;
}
/**
* @param booleanValue booleanValue or {@code null} for none
*/
public EnterpriseCrmCardsCellValue setBooleanValue(java.lang.Boolean booleanValue) {
this.booleanValue = booleanValue;
return this;
}
/**
* @return value or {@code null} for none
*/
public java.lang.Double getDoubleValue() {
return doubleValue;
}
/**
* @param doubleValue doubleValue or {@code null} for none
*/
public EnterpriseCrmCardsCellValue setDoubleValue(java.lang.Double doubleValue) {
this.doubleValue = doubleValue;
return this;
}
/**
* @return value or {@code null} for none
*/
public GoogleProtobufEmpty getEmpty() {
return empty;
}
/**
* @param empty empty or {@code null} for none
*/
public EnterpriseCrmCardsCellValue setEmpty(GoogleProtobufEmpty empty) {
this.empty = empty;
return this;
}
/**
* @return value or {@code null} for none
*/
public java.lang.Long getLongValue() {
return longValue;
}
/**
* @param longValue longValue or {@code null} for none
*/
public EnterpriseCrmCardsCellValue setLongValue(java.lang.Long longValue) {
this.longValue = longValue;
return this;
}
/**
* @return value or {@code null} for none
*/
public java.lang.String getStringValue() {
return stringValue;
}
/**
* @param stringValue stringValue or {@code null} for none
*/
public EnterpriseCrmCardsCellValue setStringValue(java.lang.String stringValue) {
this.stringValue = stringValue;
return this;
}
@Override
public EnterpriseCrmCardsCellValue set(String fieldName, Object value) {
return (EnterpriseCrmCardsCellValue) super.set(fieldName, value);
}
@Override
public EnterpriseCrmCardsCellValue clone() {
return (EnterpriseCrmCardsCellValue) super.clone();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy