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 Document AI Warehouse 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 GeostoreCityJsonProtoTransformTranslate extends com.google.api.client.json.GenericJson { + + /** + * The value may be {@code null}. + */ + @com.google.api.client.util.Key + private java.lang.Double x; + + /** + * The value may be {@code null}. + */ + @com.google.api.client.util.Key + private java.lang.Double y; + + /** + * The value may be {@code null}. + */ + @com.google.api.client.util.Key + private java.lang.Double z; + + /** + * @return value or {@code null} for none + */ + public java.lang.Double getX() { + return x; + } + + /** + * @param x x or {@code null} for none + */ + public GeostoreCityJsonProtoTransformTranslate setX(java.lang.Double x) { + this.x = x; + return this; + } + + /** + * @return value or {@code null} for none + */ + public java.lang.Double getY() { + return y; + } + + /** + * @param y y or {@code null} for none + */ + public GeostoreCityJsonProtoTransformTranslate setY(java.lang.Double y) { + this.y = y; + return this; + } + + /** + * @return value or {@code null} for none + */ + public java.lang.Double getZ() { + return z; + } + + /** + * @param z z or {@code null} for none + */ + public GeostoreCityJsonProtoTransformTranslate setZ(java.lang.Double z) { + this.z = z; + return this; + } + + @Override + public GeostoreCityJsonProtoTransformTranslate set(String fieldName, Object value) { + return (GeostoreCityJsonProtoTransformTranslate) super.set(fieldName, value); + } + + @Override + public GeostoreCityJsonProtoTransformTranslate clone() { + return (GeostoreCityJsonProtoTransformTranslate) super.clone(); + } + +} diff --git a/clients/google-api-services-contentwarehouse/v1/2.0.0/com/google/api/services/contentwarehouse/v1/model/GoogleAssistantAccessoryV1DeviceState.java b/clients/google-api-services-contentwarehouse/v1/2.0.0/com/google/api/services/contentwarehouse/v1/model/GoogleAssistantAccessoryV1DeviceState.java index 853f8af13bd..da8210f81fb 100644 --- a/clients/google-api-services-contentwarehouse/v1/2.0.0/com/google/api/services/contentwarehouse/v1/model/GoogleAssistantAccessoryV1DeviceState.java +++ b/clients/google-api-services-contentwarehouse/v1/2.0.0/com/google/api/services/contentwarehouse/v1/model/GoogleAssistantAccessoryV1DeviceState.java @@ -18,7 +18,7 @@ /** * Information about the state of the device. This contains any state that Assistant may need to - * know about in order to fulfill requests, for example which timers and alarms are set. Next ID: 11 + * know about in order to fulfill requests, for example which timers and alarms are set. Next ID: 13 * *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 Document AI Warehouse API. For a detailed explanation @@ -87,6 +87,20 @@ public final class GoogleAssistantAccessoryV1DeviceState extends com.google.api. @com.google.api.client.util.Key private GoogleAssistantEmbeddedV1FitnessActivities fitnessActivitiesState; + /** + * Information about apps currently installed on device. + * The value may be {@code null}. + */ + @com.google.api.client.util.Key + private GoogleAssistantAccessoryV1DeviceStateInstalledAppsState installedApps; + + /** + * This contains a zlib-compressed binary-encoded `InstalledAppsState` proto message. + * The value may be {@code null}. + */ + @com.google.api.client.util.Key + private java.lang.String installedAppsZlib; + /** * *Optional* Information about on-device timers. For devices that support timers, all on-device * timers must be sent up with the DeviceState in order for Assistant Server to be able to perform @@ -265,6 +279,68 @@ public GoogleAssistantAccessoryV1DeviceState setFitnessActivitiesState(GoogleAss return this; } + /** + * Information about apps currently installed on device. + * @return value or {@code null} for none + */ + public GoogleAssistantAccessoryV1DeviceStateInstalledAppsState getInstalledApps() { + return installedApps; + } + + /** + * Information about apps currently installed on device. + * @param installedApps installedApps or {@code null} for none + */ + public GoogleAssistantAccessoryV1DeviceState setInstalledApps(GoogleAssistantAccessoryV1DeviceStateInstalledAppsState installedApps) { + this.installedApps = installedApps; + return this; + } + + /** + * This contains a zlib-compressed binary-encoded `InstalledAppsState` proto message. + * @see #decodeInstalledAppsZlib() + * @return value or {@code null} for none + */ + public java.lang.String getInstalledAppsZlib() { + return installedAppsZlib; + } + + /** + * This contains a zlib-compressed binary-encoded `InstalledAppsState` proto message. + * @see #getInstalledAppsZlib() + * @return Base64 decoded value or {@code null} for none + * + * @since 1.14 + */ + public byte[] decodeInstalledAppsZlib() { + return com.google.api.client.util.Base64.decodeBase64(installedAppsZlib); + } + + /** + * This contains a zlib-compressed binary-encoded `InstalledAppsState` proto message. + * @see #encodeInstalledAppsZlib() + * @param installedAppsZlib installedAppsZlib or {@code null} for none + */ + public GoogleAssistantAccessoryV1DeviceState setInstalledAppsZlib(java.lang.String installedAppsZlib) { + this.installedAppsZlib = installedAppsZlib; + return this; + } + + /** + * This contains a zlib-compressed binary-encoded `InstalledAppsState` proto message. + * @see #setInstalledAppsZlib() + * + *
+ * The value is encoded Base64 or {@code null} for none. + *
+ * + * @since 1.14 + */ + public GoogleAssistantAccessoryV1DeviceState encodeInstalledAppsZlib(byte[] installedAppsZlib) { + this.installedAppsZlib = com.google.api.client.util.Base64.encodeBase64URLSafeString(installedAppsZlib); + return this; + } + /** * *Optional* Information about on-device timers. For devices that support timers, all on-device * timers must be sent up with the DeviceState in order for Assistant Server to be able to perform diff --git a/clients/google-api-services-contentwarehouse/v1/2.0.0/com/google/api/services/contentwarehouse/v1/model/GoogleAssistantAccessoryV1DeviceStateInstalledAppsState.java b/clients/google-api-services-contentwarehouse/v1/2.0.0/com/google/api/services/contentwarehouse/v1/model/GoogleAssistantAccessoryV1DeviceStateInstalledAppsState.java new file mode 100644 index 00000000000..3e94616dffd --- /dev/null +++ b/clients/google-api-services-contentwarehouse/v1/2.0.0/com/google/api/services/contentwarehouse/v1/model/GoogleAssistantAccessoryV1DeviceStateInstalledAppsState.java @@ -0,0 +1,73 @@ +/* + * 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.contentwarehouse.v1.model; + +/** + * State of the apps currently installed on the device. + * + *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 Document AI Warehouse 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 GoogleAssistantAccessoryV1DeviceStateInstalledAppsState extends com.google.api.client.json.GenericJson { + + /** + * List of apps currently installed on the device. + * The value may be {@code null}. + */ + @com.google.api.client.util.Key + private java.util.ListThis is the Java data model class that specifies how to parse/serialize into the JSON that is + * transmitted over HTTP when working with the Document AI Warehouse 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 RepositoryWebrefMetaTagIndices extends com.google.api.client.json.GenericJson { + + /** + * The value may be {@code null}. + */ + @com.google.api.client.util.Key + private java.lang.Integer index; + + /** + * The value may be {@code null}. + */ + @com.google.api.client.util.Key + private java.lang.String metaName; + + /** + * @return value or {@code null} for none + */ + public java.lang.Integer getIndex() { + return index; + } + + /** + * @param index index or {@code null} for none + */ + public RepositoryWebrefMetaTagIndices setIndex(java.lang.Integer index) { + this.index = index; + return this; + } + + /** + * @return value or {@code null} for none + */ + public java.lang.String getMetaName() { + return metaName; + } + + /** + * @param metaName metaName or {@code null} for none + */ + public RepositoryWebrefMetaTagIndices setMetaName(java.lang.String metaName) { + this.metaName = metaName; + return this; + } + + @Override + public RepositoryWebrefMetaTagIndices set(String fieldName, Object value) { + return (RepositoryWebrefMetaTagIndices) super.set(fieldName, value); + } + + @Override + public RepositoryWebrefMetaTagIndices clone() { + return (RepositoryWebrefMetaTagIndices) super.clone(); + } + +} diff --git a/clients/google-api-services-contentwarehouse/v1/2.0.0/com/google/api/services/contentwarehouse/v1/model/RepositoryWebrefSubSegmentIndex.java b/clients/google-api-services-contentwarehouse/v1/2.0.0/com/google/api/services/contentwarehouse/v1/model/RepositoryWebrefSubSegmentIndex.java index 8785be619b3..9bc0d487e32 100644 --- a/clients/google-api-services-contentwarehouse/v1/2.0.0/com/google/api/services/contentwarehouse/v1/model/RepositoryWebrefSubSegmentIndex.java +++ b/clients/google-api-services-contentwarehouse/v1/2.0.0/com/google/api/services/contentwarehouse/v1/model/RepositoryWebrefSubSegmentIndex.java @@ -61,6 +61,13 @@ public final class RepositoryWebrefSubSegmentIndex extends com.google.api.client @com.google.api.client.util.Key private RepositoryWebrefJuggernautIndices jgnIndex; + /** + * Informs about the 'name' attribute of the referenced tag. + * The value may be {@code null}. + */ + @com.google.api.client.util.Key + private RepositoryWebrefMetaTagIndices metaTagIndex; + /** * Pointer to the exact set of queries in the cdoc. * The value may be {@code null}. @@ -136,6 +143,23 @@ public RepositoryWebrefSubSegmentIndex setJgnIndex(RepositoryWebrefJuggernautInd return this; } + /** + * Informs about the 'name' attribute of the referenced tag. + * @return value or {@code null} for none + */ + public RepositoryWebrefMetaTagIndices getMetaTagIndex() { + return metaTagIndex; + } + + /** + * Informs about the 'name' attribute of the referenced tag. + * @param metaTagIndex metaTagIndex or {@code null} for none + */ + public RepositoryWebrefSubSegmentIndex setMetaTagIndex(RepositoryWebrefMetaTagIndices metaTagIndex) { + this.metaTagIndex = metaTagIndex; + return this; + } + /** * Pointer to the exact set of queries in the cdoc. * @return value or {@code null} for none diff --git a/clients/google-api-services-contentwarehouse/v1/2.0.0/com/google/api/services/contentwarehouse/v1/model/SocialGraphWireProtoPeopleapiAffinityMetadata.java b/clients/google-api-services-contentwarehouse/v1/2.0.0/com/google/api/services/contentwarehouse/v1/model/SocialGraphWireProtoPeopleapiAffinityMetadata.java index 790d5de832a..2559ec02efd 100644 --- a/clients/google-api-services-contentwarehouse/v1/2.0.0/com/google/api/services/contentwarehouse/v1/model/SocialGraphWireProtoPeopleapiAffinityMetadata.java +++ b/clients/google-api-services-contentwarehouse/v1/2.0.0/com/google/api/services/contentwarehouse/v1/model/SocialGraphWireProtoPeopleapiAffinityMetadata.java @@ -53,6 +53,13 @@ public final class SocialGraphWireProtoPeopleapiAffinityMetadata extends com.goo @com.google.api.client.util.Key private java.lang.Double cloudScore; + /** + * Indicator of the confidence in suggestion relevance. + * The value may be {@code null}. + */ + @com.google.api.client.util.Key + private java.lang.String suggestionConfidence; + /** * Information regarding client interactions. * @return value or {@code null} for none @@ -104,6 +111,23 @@ public SocialGraphWireProtoPeopleapiAffinityMetadata setCloudScore(java.lang.Dou return this; } + /** + * Indicator of the confidence in suggestion relevance. + * @return value or {@code null} for none + */ + public java.lang.String getSuggestionConfidence() { + return suggestionConfidence; + } + + /** + * Indicator of the confidence in suggestion relevance. + * @param suggestionConfidence suggestionConfidence or {@code null} for none + */ + public SocialGraphWireProtoPeopleapiAffinityMetadata setSuggestionConfidence(java.lang.String suggestionConfidence) { + this.suggestionConfidence = suggestionConfidence; + return this; + } + @Override public SocialGraphWireProtoPeopleapiAffinityMetadata set(String fieldName, Object value) { return (SocialGraphWireProtoPeopleapiAffinityMetadata) super.set(fieldName, value); diff --git a/clients/google-api-services-contentwarehouse/v1/2.0.0/com/google/api/services/contentwarehouse/v1/model/SocialGraphWireProtoPeopleapiExtensionPeopleStackPersonExtendedData.java b/clients/google-api-services-contentwarehouse/v1/2.0.0/com/google/api/services/contentwarehouse/v1/model/SocialGraphWireProtoPeopleapiExtensionPeopleStackPersonExtendedData.java index ed076338709..7cb1bafa7e6 100644 --- a/clients/google-api-services-contentwarehouse/v1/2.0.0/com/google/api/services/contentwarehouse/v1/model/SocialGraphWireProtoPeopleapiExtensionPeopleStackPersonExtendedData.java +++ b/clients/google-api-services-contentwarehouse/v1/2.0.0/com/google/api/services/contentwarehouse/v1/model/SocialGraphWireProtoPeopleapiExtensionPeopleStackPersonExtendedData.java @@ -17,7 +17,7 @@ package com.google.api.services.contentwarehouse.v1.model; /** - * NEXT_ID: 5 + * NEXT_ID: 6 * * 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 Document AI Warehouse API. For a detailed explanation
@@ -70,6 +70,12 @@ public final class SocialGraphWireProtoPeopleapiExtensionPeopleStackPersonExtend
@com.google.api.client.util.Key
private java.lang.String hideType;
+ /**
+ * The value may be {@code null}.
+ */
+ @com.google.api.client.util.Key
+ private java.lang.String suggestionConfidence;
+
/**
* Whether the person has birthday field populated.
* @return value or {@code null} for none
@@ -150,6 +156,21 @@ public SocialGraphWireProtoPeopleapiExtensionPeopleStackPersonExtendedData setHi
return this;
}
+ /**
+ * @return value or {@code null} for none
+ */
+ public java.lang.String getSuggestionConfidence() {
+ return suggestionConfidence;
+ }
+
+ /**
+ * @param suggestionConfidence suggestionConfidence or {@code null} for none
+ */
+ public SocialGraphWireProtoPeopleapiExtensionPeopleStackPersonExtendedData setSuggestionConfidence(java.lang.String suggestionConfidence) {
+ this.suggestionConfidence = suggestionConfidence;
+ return this;
+ }
+
@Override
public SocialGraphWireProtoPeopleapiExtensionPeopleStackPersonExtendedData set(String fieldName, Object value) {
return (SocialGraphWireProtoPeopleapiExtensionPeopleStackPersonExtendedData) super.set(fieldName, value);
diff --git a/clients/google-api-services-contentwarehouse/v1/2.0.0/pom.xml b/clients/google-api-services-contentwarehouse/v1/2.0.0/pom.xml
index 6fb7cf36687..9b3cb8dd4dd 100644
--- a/clients/google-api-services-contentwarehouse/v1/2.0.0/pom.xml
+++ b/clients/google-api-services-contentwarehouse/v1/2.0.0/pom.xml
@@ -8,8 +8,8 @@