Skip to content
Closed
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
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-walletobjects</artifactId>
<version>v1-rev20251202-2.0.0</version>
<version>v1-rev20260213-2.0.0</version>
</dependency>
</dependencies>
</project>
Expand All @@ -35,7 +35,7 @@ repositories {
mavenCentral()
}
dependencies {
implementation 'com.google.apis:google-api-services-walletobjects:v1-rev20251202-2.0.0'
implementation 'com.google.apis:google-api-services-walletobjects:v1-rev20260213-2.0.0'
}
```

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ public class Walletobjects extends com.google.api.client.googleapis.services.jso
* {@code com.google.api.client.extensions.appengine.http.UrlFetchTransport}</li>
* <li>Android: {@code newCompatibleTransport} from
* {@code com.google.api.client.extensions.android.http.AndroidHttp}</li>
* <li>Java: {@link com.google.api.client.googleapis.javanet.GoogleNetHttpTransport#newTrustedTransport()}
* <li>Java: {@code com.google.api.client.http.javanet.NetHttpTransport}</li>
* </li>
* </ul>
* @param jsonFactory JSON factory, which may be:
Expand Down Expand Up @@ -1565,7 +1565,8 @@ public List set(String parameterName, Object value) {
}
}
/**
* Modifies linked offer objects for the event ticket object with the given ID.
* Deprecated: Use Auto Linked Passes instead. Modifies linked offer objects for the event ticket
* object with the given ID.
*
* Create a request for the method "eventticketobject.modifylinkedofferobjects".
*
Expand All @@ -1591,7 +1592,8 @@ public class Modifylinkedofferobjects extends WalletobjectsRequest<com.google.ap
private static final String REST_PATH = "walletobjects/v1/eventTicketObject/{resourceId}/modifyLinkedOfferObjects";

/**
* Modifies linked offer objects for the event ticket object with the given ID.
* Deprecated: Use Auto Linked Passes instead. Modifies linked offer objects for the event ticket
* object with the given ID.
*
* Create a request for the method "eventticketobject.modifylinkedofferobjects".
*
Expand Down Expand Up @@ -9251,7 +9253,8 @@ public List set(String parameterName, Object value) {
}
}
/**
* Modifies linked offer objects for the loyalty object with the given ID.
* Deprecated: Use Auto Linked Passes instead. Modifies linked offer objects for the loyalty object
* with the given ID.
*
* Create a request for the method "loyaltyobject.modifylinkedofferobjects".
*
Expand All @@ -9277,7 +9280,8 @@ public class Modifylinkedofferobjects extends WalletobjectsRequest<com.google.ap
private static final String REST_PATH = "walletobjects/v1/loyaltyObject/{resourceId}/modifyLinkedOfferObjects";

/**
* Modifies linked offer objects for the loyalty object with the given ID.
* Deprecated: Use Auto Linked Passes instead. Modifies linked offer objects for the loyalty
* object with the given ID.
*
* Create a request for the method "loyaltyobject.modifylinkedofferobjects".
*
Expand Down Expand Up @@ -14063,8 +14067,7 @@ private static String chooseEndpoint(com.google.api.client.http.HttpTransport tr
* {@code com.google.api.client.extensions.appengine.http.UrlFetchTransport}</li>
* <li>Android: {@code newCompatibleTransport} from
* {@code com.google.api.client.extensions.android.http.AndroidHttp}</li>
* <li>Java: {@link com.google.api.client.googleapis.javanet.GoogleNetHttpTransport#newTrustedTransport()}
* </li>
* <li>Java: {@code com.google.api.client.http.javanet.NetHttpTransport}</li>
* </ul>
* @param jsonFactory JSON factory, which may be:
* <ul>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,15 @@ public final class Blobstore2Info extends com.google.api.client.json.GenericJson
@com.google.api.client.util.Key
private java.lang.String readToken;

/**
* A serialized Object Fragment List Creation Info passed from Bigstore -> Scotty for a GCS
* upload. This field must never be consumed outside of Bigstore, and is not applicable to non-GCS
* media uploads.
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private java.lang.String uploadFragmentListCreationInfo;

/**
* Metadata passed from Blobstore -> Scotty for a new GCS upload. This is a signed, serialized
* blobstore2.BlobMetadataContainer proto which must never be consumed outside of Bigstore, and is
Expand Down Expand Up @@ -232,6 +241,59 @@ public Blobstore2Info setReadToken(java.lang.String readToken) {
return this;
}

/**
* A serialized Object Fragment List Creation Info passed from Bigstore -> Scotty for a GCS
* upload. This field must never be consumed outside of Bigstore, and is not applicable to non-GCS
* media uploads.
* @see #decodeUploadFragmentListCreationInfo()
* @return value or {@code null} for none
*/
public java.lang.String getUploadFragmentListCreationInfo() {
return uploadFragmentListCreationInfo;
}

/**
* A serialized Object Fragment List Creation Info passed from Bigstore -> Scotty for a GCS
* upload. This field must never be consumed outside of Bigstore, and is not applicable to non-GCS
* media uploads.
* @see #getUploadFragmentListCreationInfo()
* @return Base64 decoded value or {@code null} for none
*
* @since 1.14
*/
public byte[] decodeUploadFragmentListCreationInfo() {
return com.google.api.client.util.Base64.decodeBase64(uploadFragmentListCreationInfo);
}

/**
* A serialized Object Fragment List Creation Info passed from Bigstore -> Scotty for a GCS
* upload. This field must never be consumed outside of Bigstore, and is not applicable to non-GCS
* media uploads.
* @see #encodeUploadFragmentListCreationInfo()
* @param uploadFragmentListCreationInfo uploadFragmentListCreationInfo or {@code null} for none
*/
public Blobstore2Info setUploadFragmentListCreationInfo(java.lang.String uploadFragmentListCreationInfo) {
this.uploadFragmentListCreationInfo = uploadFragmentListCreationInfo;
return this;
}

/**
* A serialized Object Fragment List Creation Info passed from Bigstore -> Scotty for a GCS
* upload. This field must never be consumed outside of Bigstore, and is not applicable to non-GCS
* media uploads.
* @see #setUploadFragmentListCreationInfo()
*
* <p>
* The value is encoded Base64 or {@code null} for none.
* </p>
*
* @since 1.14
*/
public Blobstore2Info encodeUploadFragmentListCreationInfo(byte[] uploadFragmentListCreationInfo) {
this.uploadFragmentListCreationInfo = com.google.api.client.util.Base64.encodeBase64URLSafeString(uploadFragmentListCreationInfo);
return this;
}

/**
* Metadata passed from Blobstore -> Scotty for a new GCS upload. This is a signed, serialized
* blobstore2.BlobMetadataContainer proto which must never be consumed outside of Bigstore, and is
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -402,8 +402,8 @@ public final class EventTicketClass extends com.google.api.client.json.GenericJs
private java.util.List<TextModuleData> textModulesData;

/**
* Optional value added module data. Maximum of ten on the class. For a pass only ten will be
* displayed, prioritizing those from the object.
* Optional value added module data. Maximum of fifteen on the class. For a pass only fifteen will
* be displayed, prioritizing those from the object.
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
Expand Down Expand Up @@ -1313,17 +1313,17 @@ public EventTicketClass setTextModulesData(java.util.List<TextModuleData> textMo
}

/**
* Optional value added module data. Maximum of ten on the class. For a pass only ten will be
* displayed, prioritizing those from the object.
* Optional value added module data. Maximum of fifteen on the class. For a pass only fifteen will
* be displayed, prioritizing those from the object.
* @return value or {@code null} for none
*/
public java.util.List<ValueAddedModuleData> getValueAddedModuleData() {
return valueAddedModuleData;
}

/**
* Optional value added module data. Maximum of ten on the class. For a pass only ten will be
* displayed, prioritizing those from the object.
* Optional value added module data. Maximum of fifteen on the class. For a pass only fifteen will
* be displayed, prioritizing those from the object.
* @param valueAddedModuleData valueAddedModuleData or {@code null} for none
*/
public EventTicketClass setValueAddedModuleData(java.util.List<ValueAddedModuleData> valueAddedModuleData) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -317,7 +317,8 @@ public final class EventTicketObject extends com.google.api.client.json.GenericJ
private TimeInterval validTimeInterval;

/**
* Optional value added module data. Maximum of ten on the object.
* Optional value added module data. Maximum of fifteen on the object. For a pass only fifteen
* will be displayed.
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
Expand Down Expand Up @@ -1007,15 +1008,17 @@ public EventTicketObject setValidTimeInterval(TimeInterval validTimeInterval) {
}

/**
* Optional value added module data. Maximum of ten on the object.
* Optional value added module data. Maximum of fifteen on the object. For a pass only fifteen
* will be displayed.
* @return value or {@code null} for none
*/
public java.util.List<ValueAddedModuleData> getValueAddedModuleData() {
return valueAddedModuleData;
}

/**
* Optional value added module data. Maximum of ten on the object.
* Optional value added module data. Maximum of fifteen on the object. For a pass only fifteen
* will be displayed.
* @param valueAddedModuleData valueAddedModuleData or {@code null} for none
*/
public EventTicketObject setValueAddedModuleData(java.util.List<ValueAddedModuleData> valueAddedModuleData) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -374,8 +374,8 @@ public final class FlightClass extends com.google.api.client.json.GenericJson {
private java.util.List<TextModuleData> textModulesData;

/**
* Optional value added module data. Maximum of ten on the class. For a pass only ten will be
* displayed, prioritizing those from the object.
* Optional value added module data. Maximum of fifteen on the class. For a pass only fifteen will
* be displayed, prioritizing those from the object.
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
Expand Down Expand Up @@ -1205,17 +1205,17 @@ public FlightClass setTextModulesData(java.util.List<TextModuleData> textModules
}

/**
* Optional value added module data. Maximum of ten on the class. For a pass only ten will be
* displayed, prioritizing those from the object.
* Optional value added module data. Maximum of fifteen on the class. For a pass only fifteen will
* be displayed, prioritizing those from the object.
* @return value or {@code null} for none
*/
public java.util.List<ValueAddedModuleData> getValueAddedModuleData() {
return valueAddedModuleData;
}

/**
* Optional value added module data. Maximum of ten on the class. For a pass only ten will be
* displayed, prioritizing those from the object.
* Optional value added module data. Maximum of fifteen on the class. For a pass only fifteen will
* be displayed, prioritizing those from the object.
* @param valueAddedModuleData valueAddedModuleData or {@code null} for none
*/
public FlightClass setValueAddedModuleData(java.util.List<ValueAddedModuleData> valueAddedModuleData) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -290,7 +290,8 @@ public final class FlightObject extends com.google.api.client.json.GenericJson {
private TimeInterval validTimeInterval;

/**
* Optional value added module data. Maximum of ten on the object.
* Optional value added module data. Maximum of fifteen on the object. For a pass only fifteen
* will be displayed.
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
Expand Down Expand Up @@ -917,15 +918,17 @@ public FlightObject setValidTimeInterval(TimeInterval validTimeInterval) {
}

/**
* Optional value added module data. Maximum of ten on the object.
* Optional value added module data. Maximum of fifteen on the object. For a pass only fifteen
* will be displayed.
* @return value or {@code null} for none
*/
public java.util.List<ValueAddedModuleData> getValueAddedModuleData() {
return valueAddedModuleData;
}

/**
* Optional value added module data. Maximum of ten on the object.
* Optional value added module data. Maximum of fifteen on the object. For a pass only fifteen
* will be displayed.
* @param valueAddedModuleData valueAddedModuleData or {@code null} for none
*/
public FlightObject setValueAddedModuleData(java.util.List<ValueAddedModuleData> valueAddedModuleData) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -138,8 +138,8 @@ public final class GenericClass extends com.google.api.client.json.GenericJson {
private java.util.List<TextModuleData> textModulesData;

/**
* Optional value added module data. Maximum of ten on the class. For a pass only ten will be
* displayed, prioritizing those from the object.
* Optional value added module data. Maximum of fifteen on the class. For a pass only fifteen will
* be displayed, prioritizing those from the object.
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
Expand Down Expand Up @@ -408,17 +408,17 @@ public GenericClass setTextModulesData(java.util.List<TextModuleData> textModule
}

/**
* Optional value added module data. Maximum of ten on the class. For a pass only ten will be
* displayed, prioritizing those from the object.
* Optional value added module data. Maximum of fifteen on the class. For a pass only fifteen will
* be displayed, prioritizing those from the object.
* @return value or {@code null} for none
*/
public java.util.List<ValueAddedModuleData> getValueAddedModuleData() {
return valueAddedModuleData;
}

/**
* Optional value added module data. Maximum of ten on the class. For a pass only ten will be
* displayed, prioritizing those from the object.
* Optional value added module data. Maximum of fifteen on the class. For a pass only fifteen will
* be displayed, prioritizing those from the object.
* @param valueAddedModuleData valueAddedModuleData or {@code null} for none
*/
public GenericClass setValueAddedModuleData(java.util.List<ValueAddedModuleData> valueAddedModuleData) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -250,7 +250,8 @@ public final class GenericObject extends com.google.api.client.json.GenericJson
private TimeInterval validTimeInterval;

/**
* Optional value added module data. Maximum of ten on the object.
* Optional value added module data. Maximum of fifteen on the object. For a pass only fifteen
* will be displayed.
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
Expand Down Expand Up @@ -783,15 +784,17 @@ public GenericObject setValidTimeInterval(TimeInterval validTimeInterval) {
}

/**
* Optional value added module data. Maximum of ten on the object.
* Optional value added module data. Maximum of fifteen on the object. For a pass only fifteen
* will be displayed.
* @return value or {@code null} for none
*/
public java.util.List<ValueAddedModuleData> getValueAddedModuleData() {
return valueAddedModuleData;
}

/**
* Optional value added module data. Maximum of ten on the object.
* Optional value added module data. Maximum of fifteen on the object. For a pass only fifteen
* will be displayed.
* @param valueAddedModuleData valueAddedModuleData or {@code null} for none
*/
public GenericObject setValueAddedModuleData(java.util.List<ValueAddedModuleData> valueAddedModuleData) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -326,8 +326,8 @@ public final class GiftCardClass extends com.google.api.client.json.GenericJson
private java.util.List<TextModuleData> textModulesData;

/**
* Optional value added module data. Maximum of ten on the class. For a pass only ten will be
* displayed, prioritizing those from the object.
* Optional value added module data. Maximum of fifteen on the class. For a pass only fifteen will
* be displayed, prioritizing those from the object.
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
Expand Down Expand Up @@ -1063,17 +1063,17 @@ public GiftCardClass setTextModulesData(java.util.List<TextModuleData> textModul
}

/**
* Optional value added module data. Maximum of ten on the class. For a pass only ten will be
* displayed, prioritizing those from the object.
* Optional value added module data. Maximum of fifteen on the class. For a pass only fifteen will
* be displayed, prioritizing those from the object.
* @return value or {@code null} for none
*/
public java.util.List<ValueAddedModuleData> getValueAddedModuleData() {
return valueAddedModuleData;
}

/**
* Optional value added module data. Maximum of ten on the class. For a pass only ten will be
* displayed, prioritizing those from the object.
* Optional value added module data. Maximum of fifteen on the class. For a pass only fifteen will
* be displayed, prioritizing those from the object.
* @param valueAddedModuleData valueAddedModuleData or {@code null} for none
*/
public GiftCardClass setValueAddedModuleData(java.util.List<ValueAddedModuleData> valueAddedModuleData) {
Expand Down
Loading
Loading