We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a941127 commit 7102b2aCopy full SHA for 7102b2a
src/Enum/Fields/ProductImageFields.php
@@ -11,6 +11,7 @@ class ProductImageFields extends AbstractObjectEnum
11
const PRODUCT_ID = 'product_id';
12
const VARIANT_IDS = 'variant_ids';
13
const SRC = 'src';
14
+ const ALT = 'alt';
15
const WIDTH = 'width';
16
const HEIGHT = 'height';
17
const UPDATED_AT = 'updated_at';
@@ -25,6 +26,7 @@ public function getFieldTypes()
25
26
'product_id' => 'integer',
27
'variant_ids' => 'array',
28
'src' => 'string',
29
+ 'alt' => 'string',
30
'height' => 'integer',
31
'width' => 'integer',
32
'updated_at' => 'DateTime'
0 commit comments