Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions clients/google-api-services-recommender/v1/2.0.0/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ Add the following lines to your `pom.xml` file:
<dependency>
<groupId>com.google.apis</groupId>
<artifactId>google-api-services-recommender</artifactId>
<version>v1-rev20260621-2.0.0</version>
<version>v1-rev20260913-2.0.0</version>
</dependency>
</dependencies>
</project>
Expand All @@ -35,7 +35,7 @@ repositories {
mavenCentral()
}
dependencies {
implementation 'com.google.apis:google-api-services-recommender:v1-rev20260621-2.0.0'
implementation 'com.google.apis:google-api-services-recommender:v1-rev20260913-2.0.0'
}
```

Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,66 @@
/*
* 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.recommender.v1.model;

/**
* Model definition for CloudRecommendationsRecommendersDatabasesV1ContentChunk.
*
* <p> 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 Recommender API. For a detailed explanation see:
* <a href="https://developers.google.com/api-client-library/java/google-http-java-client/json">https://developers.google.com/api-client-library/java/google-http-java-client/json</a>
* </p>
*
* @author Google, Inc.
*/
@SuppressWarnings("javadoc")
public final class CloudRecommendationsRecommendersDatabasesV1ContentChunk extends com.google.api.client.json.GenericJson {

/**
* Table with headers and rows content for the content chunk.
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private CloudRecommendationsRecommendersDatabasesV1Table table;

/**
* Table with headers and rows content for the content chunk.
* @return value or {@code null} for none
*/
public CloudRecommendationsRecommendersDatabasesV1Table getTable() {
return table;
}

/**
* Table with headers and rows content for the content chunk.
* @param table table or {@code null} for none
*/
public CloudRecommendationsRecommendersDatabasesV1ContentChunk setTable(CloudRecommendationsRecommendersDatabasesV1Table table) {
this.table = table;
return this;
}

@Override
public CloudRecommendationsRecommendersDatabasesV1ContentChunk set(String fieldName, Object value) {
return (CloudRecommendationsRecommendersDatabasesV1ContentChunk) super.set(fieldName, value);
}

@Override
public CloudRecommendationsRecommendersDatabasesV1ContentChunk clone() {
return (CloudRecommendationsRecommendersDatabasesV1ContentChunk) super.clone();
}

}
Original file line number Diff line number Diff line change
@@ -0,0 +1,108 @@
/*
* 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.recommender.v1.model;

/**
* Model definition for CloudRecommendationsRecommendersDatabasesV1CtaConfig.
*
* <p> 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 Recommender API. For a detailed explanation see:
* <a href="https://developers.google.com/api-client-library/java/google-http-java-client/json">https://developers.google.com/api-client-library/java/google-http-java-client/json</a>
* </p>
*
* @author Google, Inc.
*/
@SuppressWarnings("javadoc")
public final class CloudRecommendationsRecommendersDatabasesV1CtaConfig extends com.google.api.client.json.GenericJson {

/**
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private java.lang.Boolean isPrimary;

/**
* Enum used to map to the string to be shown in the UI for the button.
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private java.lang.String label;

/**
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private java.lang.String redirectPage;

/**
* @return value or {@code null} for none
*/
public java.lang.Boolean getIsPrimary() {
return isPrimary;
}

/**
* @param isPrimary isPrimary or {@code null} for none
*/
public CloudRecommendationsRecommendersDatabasesV1CtaConfig setIsPrimary(java.lang.Boolean isPrimary) {
this.isPrimary = isPrimary;
return this;
}

/**
* Enum used to map to the string to be shown in the UI for the button.
* @return value or {@code null} for none
*/
public java.lang.String getLabel() {
return label;
}

/**
* Enum used to map to the string to be shown in the UI for the button.
* @param label label or {@code null} for none
*/
public CloudRecommendationsRecommendersDatabasesV1CtaConfig setLabel(java.lang.String label) {
this.label = label;
return this;
}

/**
* @return value or {@code null} for none
*/
public java.lang.String getRedirectPage() {
return redirectPage;
}

/**
* @param redirectPage redirectPage or {@code null} for none
*/
public CloudRecommendationsRecommendersDatabasesV1CtaConfig setRedirectPage(java.lang.String redirectPage) {
this.redirectPage = redirectPage;
return this;
}

@Override
public CloudRecommendationsRecommendersDatabasesV1CtaConfig set(String fieldName, Object value) {
return (CloudRecommendationsRecommendersDatabasesV1CtaConfig) super.set(fieldName, value);
}

@Override
public CloudRecommendationsRecommendersDatabasesV1CtaConfig clone() {
return (CloudRecommendationsRecommendersDatabasesV1CtaConfig) super.clone();
}

}
Loading
Loading