ProductImage
Type: schema
TypeScript Definition
typescript
ProductImage: {{
title?: string | null;
alternate_text?: string | null;
/** Format: int32 */
sort_order?: number;
url_tiny?: string;
url_thumbnail?: string;
url_standard?: string;
url_zoom?: string;
file_id?: string;
/** @enum {unknown} */
file_type?: "image";
};
/** Shipment */
}OpenAPI Schema
json
{
"type": "object",
"properties": {
"title": {
"type": [
"string",
"null"
],
"maxLength": 128
},
"alternate_text": {
"type": [
"string",
"null"
],
"maxLength": 128
},
"sort_order": {
"type": "integer",
"format": "int32"
},
"url_tiny": {
"type": "string",
"maxLength": 512
},
"url_thumbnail": {
"type": "string",
"maxLength": 512
},
"url_standard": {
"type": "string",
"maxLength": 512
},
"url_zoom": {
"type": "string",
"maxLength": 512
},
"file_id": {
"type": "string"
},
"file_type": {
"enum": [
"image"
]
}
},
"title": "ProductImage",
"x-tags": [
"Catalog"
]
}Auto-generated from OpenAPI spec and TypeScript definitions