Skip to content

Commit

Permalink
Adicionado campo SellerCustomField
Browse files Browse the repository at this point in the history
  • Loading branch information
frankdors authored Apr 6, 2023
1 parent 2928872 commit 72dd759
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 72dd759

Please sign in to comment.