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 3921959 commit ce1b2efCopy full SHA for ce1b2ef
src/Enum/Fields/ProductImageFields.php
@@ -4,6 +4,7 @@
4
5
class ProductImageFields extends AbstractObjectEnum
6
{
7
+ const ATTACHMENT = 'attachment';
8
const CREATED_AT = 'created_at';
9
const ID = 'id';
10
const POSITION = 'position';
@@ -16,7 +17,8 @@ class ProductImageFields extends AbstractObjectEnum
16
17
18
public function getFieldTypes()
19
- return array(
20
+ return array(
21
+ 'attachment' => 'string',
22
'created_at' => 'DateTime',
23
'id' => 'integer',
24
'position' => 'integer',
0 commit comments