com.google.api.services.integrations.v1alpha.model.GoogleCloudIntegrationsV1alphaRuntimeEntitySchema 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;
/**
* Metadata of an entity, including a schema for its properties.
*
* 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 GoogleCloudIntegrationsV1alphaRuntimeEntitySchema extends com.google.api.client.json.GenericJson {
/**
* The above schema, but for an array of the associated entity.
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private java.lang.String arrayFieldSchema;
/**
* Name of the entity.
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private java.lang.String entity;
/**
* List of fields in the entity.
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private java.lang.String fieldSchema;
/**
* The above schema, but for an array of the associated entity.
* @return value or {@code null} for none
*/
public java.lang.String getArrayFieldSchema() {
return arrayFieldSchema;
}
/**
* The above schema, but for an array of the associated entity.
* @param arrayFieldSchema arrayFieldSchema or {@code null} for none
*/
public GoogleCloudIntegrationsV1alphaRuntimeEntitySchema setArrayFieldSchema(java.lang.String arrayFieldSchema) {
this.arrayFieldSchema = arrayFieldSchema;
return this;
}
/**
* Name of the entity.
* @return value or {@code null} for none
*/
public java.lang.String getEntity() {
return entity;
}
/**
* Name of the entity.
* @param entity entity or {@code null} for none
*/
public GoogleCloudIntegrationsV1alphaRuntimeEntitySchema setEntity(java.lang.String entity) {
this.entity = entity;
return this;
}
/**
* List of fields in the entity.
* @return value or {@code null} for none
*/
public java.lang.String getFieldSchema() {
return fieldSchema;
}
/**
* List of fields in the entity.
* @param fieldSchema fieldSchema or {@code null} for none
*/
public GoogleCloudIntegrationsV1alphaRuntimeEntitySchema setFieldSchema(java.lang.String fieldSchema) {
this.fieldSchema = fieldSchema;
return this;
}
@Override
public GoogleCloudIntegrationsV1alphaRuntimeEntitySchema set(String fieldName, Object value) {
return (GoogleCloudIntegrationsV1alphaRuntimeEntitySchema) super.set(fieldName, value);
}
@Override
public GoogleCloudIntegrationsV1alphaRuntimeEntitySchema clone() {
return (GoogleCloudIntegrationsV1alphaRuntimeEntitySchema) super.clone();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy