Skip to content

Commit

Permalink
Add attachment to ProductImage (#38)
Browse files Browse the repository at this point in the history
Resolves #37
  • Loading branch information
robwittman authored Sep 15, 2019
1 parent 3921959 commit ce1b2ef
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/Enum/Fields/ProductImageFields.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@

class ProductImageFields extends AbstractObjectEnum
{
const ATTACHMENT = 'attachment';
const CREATED_AT = 'created_at';
const ID = 'id';
const POSITION = 'position';
Expand All @@ -16,7 +17,8 @@ class ProductImageFields extends AbstractObjectEnum

public function getFieldTypes()
{
return array(
return array(
'attachment' => 'string',
'created_at' => 'DateTime',
'id' => 'integer',
'position' => 'integer',
Expand Down

0 comments on commit ce1b2ef

Please sign in to comment.