diff --git a/clients/google-api-services-travelimpactmodel/v1/2.0.0/README.md b/clients/google-api-services-travelimpactmodel/v1/2.0.0/README.md index 0ede8d4b4e7..c9c5b6a60bf 100644 --- a/clients/google-api-services-travelimpactmodel/v1/2.0.0/README.md +++ b/clients/google-api-services-travelimpactmodel/v1/2.0.0/README.md @@ -22,7 +22,7 @@ Add the following lines to your `pom.xml` file: com.google.apis google-api-services-travelimpactmodel - v1-rev20260615-2.0.0 + v1-rev20260624-2.0.0 @@ -35,7 +35,7 @@ repositories { mavenCentral() } dependencies { - implementation 'com.google.apis:google-api-services-travelimpactmodel:v1-rev20260615-2.0.0' + implementation 'com.google.apis:google-api-services-travelimpactmodel:v1-rev20260624-2.0.0' } ``` diff --git a/clients/google-api-services-travelimpactmodel/v1/2.0.0/com/google/api/services/travelimpactmodel/v1/model/EmissionsProvenanceEntry.java b/clients/google-api-services-travelimpactmodel/v1/2.0.0/com/google/api/services/travelimpactmodel/v1/model/EmissionsProvenanceEntry.java index 39fe21255de..415cc2cd15a 100644 --- a/clients/google-api-services-travelimpactmodel/v1/2.0.0/com/google/api/services/travelimpactmodel/v1/model/EmissionsProvenanceEntry.java +++ b/clients/google-api-services-travelimpactmodel/v1/2.0.0/com/google/api/services/travelimpactmodel/v1/model/EmissionsProvenanceEntry.java @@ -103,14 +103,6 @@ public final class EmissionsProvenanceEntry extends com.google.api.client.json.G @com.google.api.client.util.Key private java.lang.String provenanceEntryType; - /** - * Output only. The seat area ratio value for each seating class. If not set, the seat area ratio - * value is not available. - * The value may be {@code null}. - */ - @com.google.api.client.util.Key - private SeatAreaRatioData seatAreaRatioData; - /** * Output only. Strategy for IATA seat area ratios. * The value may be {@code null}. @@ -308,25 +300,6 @@ public EmissionsProvenanceEntry setProvenanceEntryType(java.lang.String provenan return this; } - /** - * Output only. The seat area ratio value for each seating class. If not set, the seat area ratio - * value is not available. - * @return value or {@code null} for none - */ - public SeatAreaRatioData getSeatAreaRatioData() { - return seatAreaRatioData; - } - - /** - * Output only. The seat area ratio value for each seating class. If not set, the seat area ratio - * value is not available. - * @param seatAreaRatioData seatAreaRatioData or {@code null} for none - */ - public EmissionsProvenanceEntry setSeatAreaRatioData(SeatAreaRatioData seatAreaRatioData) { - this.seatAreaRatioData = seatAreaRatioData; - return this; - } - /** * Output only. Strategy for IATA seat area ratios. * @return value or {@code null} for none diff --git a/clients/google-api-services-travelimpactmodel/v1/2.0.0/com/google/api/services/travelimpactmodel/v1/model/SeatAreaRatioData.java b/clients/google-api-services-travelimpactmodel/v1/2.0.0/com/google/api/services/travelimpactmodel/v1/model/SeatAreaRatioData.java deleted file mode 100644 index 9627ccfbdfd..00000000000 --- a/clients/google-api-services-travelimpactmodel/v1/2.0.0/com/google/api/services/travelimpactmodel/v1/model/SeatAreaRatioData.java +++ /dev/null @@ -1,141 +0,0 @@ -/* - * 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.travelimpactmodel.v1.model; - -/** - * Seat area ratio data values. Economy is always 1.0 and serves as the reference point; other class - * values are relative to economy. All 4 fields are always set whether the seating class exists on - * the aircraft or not. - * - *

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 Travel Impact Model 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 SeatAreaRatioData extends com.google.api.client.json.GenericJson { - - /** - * Output only. Business seating class data value. - * The value may be {@code null}. - */ - @com.google.api.client.util.Key - private java.lang.Double business; - - /** - * Output only. Economy seating class data value. - * The value may be {@code null}. - */ - @com.google.api.client.util.Key - private java.lang.Double economy; - - /** - * Output only. First seating class data value. - * The value may be {@code null}. - */ - @com.google.api.client.util.Key - private java.lang.Double first; - - /** - * Output only. Premium economy seating class data value. - * The value may be {@code null}. - */ - @com.google.api.client.util.Key - private java.lang.Double premiumEconomy; - - /** - * Output only. Business seating class data value. - * @return value or {@code null} for none - */ - public java.lang.Double getBusiness() { - return business; - } - - /** - * Output only. Business seating class data value. - * @param business business or {@code null} for none - */ - public SeatAreaRatioData setBusiness(java.lang.Double business) { - this.business = business; - return this; - } - - /** - * Output only. Economy seating class data value. - * @return value or {@code null} for none - */ - public java.lang.Double getEconomy() { - return economy; - } - - /** - * Output only. Economy seating class data value. - * @param economy economy or {@code null} for none - */ - public SeatAreaRatioData setEconomy(java.lang.Double economy) { - this.economy = economy; - return this; - } - - /** - * Output only. First seating class data value. - * @return value or {@code null} for none - */ - public java.lang.Double getFirst() { - return first; - } - - /** - * Output only. First seating class data value. - * @param first first or {@code null} for none - */ - public SeatAreaRatioData setFirst(java.lang.Double first) { - this.first = first; - return this; - } - - /** - * Output only. Premium economy seating class data value. - * @return value or {@code null} for none - */ - public java.lang.Double getPremiumEconomy() { - return premiumEconomy; - } - - /** - * Output only. Premium economy seating class data value. - * @param premiumEconomy premiumEconomy or {@code null} for none - */ - public SeatAreaRatioData setPremiumEconomy(java.lang.Double premiumEconomy) { - this.premiumEconomy = premiumEconomy; - return this; - } - - @Override - public SeatAreaRatioData set(String fieldName, Object value) { - return (SeatAreaRatioData) super.set(fieldName, value); - } - - @Override - public SeatAreaRatioData clone() { - return (SeatAreaRatioData) super.clone(); - } - -} diff --git a/clients/google-api-services-travelimpactmodel/v1/2.0.0/pom.xml b/clients/google-api-services-travelimpactmodel/v1/2.0.0/pom.xml index bc4c115c903..a9c9fefaef1 100644 --- a/clients/google-api-services-travelimpactmodel/v1/2.0.0/pom.xml +++ b/clients/google-api-services-travelimpactmodel/v1/2.0.0/pom.xml @@ -8,8 +8,8 @@ com.google.apis google-api-services-travelimpactmodel - v1-rev20260615-2.0.0 - Travel Impact Model API v1-rev20260615-2.0.0 + v1-rev20260624-2.0.0 + Travel Impact Model API v1-rev20260624-2.0.0 jar 2011 diff --git a/clients/google-api-services-travelimpactmodel/v1/README.md b/clients/google-api-services-travelimpactmodel/v1/README.md index 0ede8d4b4e7..c9c5b6a60bf 100644 --- a/clients/google-api-services-travelimpactmodel/v1/README.md +++ b/clients/google-api-services-travelimpactmodel/v1/README.md @@ -22,7 +22,7 @@ Add the following lines to your `pom.xml` file: com.google.apis google-api-services-travelimpactmodel - v1-rev20260615-2.0.0 + v1-rev20260624-2.0.0 @@ -35,7 +35,7 @@ repositories { mavenCentral() } dependencies { - implementation 'com.google.apis:google-api-services-travelimpactmodel:v1-rev20260615-2.0.0' + implementation 'com.google.apis:google-api-services-travelimpactmodel:v1-rev20260624-2.0.0' } ```