Skip to content

Commit d2867b2

Browse files
authored
Add product status field (#57)
1 parent 7554e22 commit d2867b2

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

src/Enum/Fields/ProductFields.php

+2
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ class ProductFields extends AbstractObjectEnum
1313
const PRODUCT_TYPE = 'product_type';
1414
const PUBLISHED_AT = 'published_at';
1515
const PUBLISHED_SCOPE = 'published_scope';
16+
const STATUS = 'status';
1617
const TAGS = 'tags';
1718
const TEMPLATE_SUFFIX = 'template_suffix';
1819
const TITLE = 'title';
@@ -35,6 +36,7 @@ public function getFieldTypes()
3536
'product_type' => 'string',
3637
'published_at' => 'DateTime',
3738
'published_scope' => 'string',
39+
'status' => 'string',
3840
'tags' => 'string',
3941
'template_suffix' => 'string',
4042
'title' => 'string',

0 commit comments

Comments
 (0)