You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
"description": "Identifies what kind of resource this is. Value: the fixed string `\"walletobjects#image\"`.",
6207
6207
"type": "string"
6208
6208
},
6209
+
"privateImageId": {
6210
+
"description": "An ID for an already uploaded private image. Either this or source_uri should be set. Requests setting both or neither will be rejected. Please contact support to use private images.",
6211
+
"type": "string"
6212
+
},
6209
6213
"sourceUri": {
6210
6214
"$ref": "ImageUri",
6211
-
"description": "The URI for the image."
6215
+
"description": "A URI for the image. Either this or private_image_id should be set. Requests setting both or neither will be rejected."
6212
6216
}
6213
6217
},
6214
6218
"type": "object"
@@ -9747,6 +9751,23 @@
9747
9751
},
9748
9752
"type": "object"
9749
9753
},
9754
+
"UploadPrivateImageRequest": {
9755
+
"description": "Request to upload a private image to use in a pass.",
9756
+
"id": "UploadPrivateImageRequest",
9757
+
"properties": {},
9758
+
"type": "object"
9759
+
},
9760
+
"UploadPrivateImageResponse": {
9761
+
"description": "Response for uploading the private image.",
9762
+
"id": "UploadPrivateImageResponse",
9763
+
"properties": {
9764
+
"privateImageId": {
9765
+
"description": "Unique ID of the uploaded image to be referenced later in Image.private_image_id.",
* An ID for an already uploaded private image. Either this or source_uri should be set. Requests setting both or neither will be rejected. Please contact support to use private images.
2165
+
*/
2166
+
privateImageId?: string | null;
2167
+
/**
2168
+
* A URI for the image. Either this or private_image_id should be set. Requests setting both or neither will be rejected.
* Unique ID of the uploaded image to be referenced later in Image.private_image_id.
4295
+
*/
4296
+
privateImageId?: string | null;
4297
+
}
4281
4298
export interface Schema$Uri {
4282
4299
/**
4283
4300
* The URI's title appearing in the app as text. Recommended maximum is 20 characters to ensure full string is displayed on smaller screens. Note that in some contexts this text is not used, such as when `description` is part of an image.
0 commit comments