Skip to content

Commit

Permalink
Merge pull request #89 from frankdors/patch-1
Browse files Browse the repository at this point in the history
Adicionado campo SellerCustomField
  • Loading branch information
dilowagner authored Apr 8, 2023
2 parents 2928872 + 72dd759 commit 02dbf70
Showing 1 changed file with 27 additions and 1 deletion.
28 changes: 27 additions & 1 deletion src/Requests/Product/Variation.php
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,12 @@ class Variation
*/
private $pictureIds;

/**
* @var string
* @JMS\Type("string")
*/
private $sellerCustomField ;

/**
* Variation constructor.
*/
Expand Down Expand Up @@ -217,4 +223,24 @@ public function setPictureIds($pictureIds)
$this->pictureIds = $pictureIds;
return $this;
}
}

/**
*
* @return string
*/
public function getSellerCustomField()
{
return $this->sellerCustomField;
}

/**
* @param string $sellerCustomField
* @return Variation
*/
public function setSellerCustomField($sellerCustomField)
{
$this->sellerCustomField = $sellerCustomField;
return $this;
}

}

0 comments on commit 02dbf70

Please sign in to comment.