From 72dd7599f8afb9428a93617e37de919f243ff0e9 Mon Sep 17 00:00:00 2001 From: Franciel Dors Date: Thu, 6 Apr 2023 15:01:10 -0300 Subject: [PATCH] Adicionado campo SellerCustomField MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Conforme documentaĆ§Ć£o o campo seller_custom_field para uso interno pelo vendedor https://developers.mercadolivre.com.br/pt-br/variacoes/#:~:text=deixando%20o%20campo-,seller_custom_field,-para%20uso%20interno --- src/Requests/Product/Variation.php | 28 +++++++++++++++++++++++++++- 1 file changed, 27 insertions(+), 1 deletion(-) diff --git a/src/Requests/Product/Variation.php b/src/Requests/Product/Variation.php index 881236f..b6b716f 100644 --- a/src/Requests/Product/Variation.php +++ b/src/Requests/Product/Variation.php @@ -59,6 +59,12 @@ class Variation */ private $pictureIds; + /** + * @var string + * @JMS\Type("string") + */ + private $sellerCustomField ; + /** * Variation constructor. */ @@ -217,4 +223,24 @@ public function setPictureIds($pictureIds) $this->pictureIds = $pictureIds; return $this; } -} \ No newline at end of file + + /** + * + * @return string + */ + public function getSellerCustomField() + { + return $this->sellerCustomField; + } + + /** + * @param string $sellerCustomField + * @return Variation + */ + public function setSellerCustomField($sellerCustomField) + { + $this->sellerCustomField = $sellerCustomField; + return $this; + } + +}