/**
  * @param int|null $paymentId
  */
 public function setPaymentId($paymentId = null)
 {
     $this->paymentId = \dlds\thepay\api\dataApi\TpValueFormatter::format('int', $paymentId);
 }
 /**
  * @param string|null $specificSymbol
  */
 public function setSpecificSymbol($specificSymbol = null)
 {
     $this->specificSymbol = \dlds\thepay\api\dataApi\TpValueFormatter::format('string', $specificSymbol);
 }
 /**
  * @param int|null $itemsOnPage
  */
 public function setItemsOnPage($itemsOnPage = null)
 {
     $this->itemsOnPage = \dlds\thepay\api\dataApi\TpValueFormatter::format('int', $itemsOnPage);
 }
 /**
  * @param bool|null $active
  */
 public function setActive($active = null)
 {
     $this->active = \dlds\thepay\api\dataApi\TpValueFormatter::format('bool', $active);
 }
 /**
  * @param TpDataApiMerchantAccountMethod[] $methods
  */
 public function setMethods(array $methods = array())
 {
     $this->methods = \dlds\thepay\api\dataApi\TpValueFormatter::formatList('TpDataApiMerchantAccountMethod', $methods);
 }
 /**
  * @param int|null $state
  */
 public function setState($state = null)
 {
     $this->state = \dlds\thepay\api\dataApi\TpValueFormatter::format('int', $state);
 }
 /**
  * @param TpDataApiPayment|null $payment
  */
 public function setPayment(\dlds\thepay\api\dataApi\parameters\TpDataApiPayment $payment = null)
 {
     $this->payment = \dlds\thepay\api\dataApi\TpValueFormatter::format('TpDataApiPayment', $payment);
 }
 /**
  * @param string|null $orderHow
  */
 public function setOrderHow($orderHow = null)
 {
     $this->orderHow = \dlds\thepay\api\dataApi\TpValueFormatter::format('string', $orderHow);
 }
 /**
  * @return string|null
  */
 public function setCustomerEmail($customerEmail = null)
 {
     $this->customerEmail = \dlds\thepay\api\dataApi\TpValueFormatter::format('string', $customerEmail);
 }
 /**
  * @param int $merchantId
  */
 public function setMerchantId($merchantId)
 {
     $this->merchantId = \dlds\thepay\api\dataApi\TpValueFormatter::format('int', $merchantId);
 }
 /**
  * @param TpDataApiOrdering|null $ordering
  */
 public function setOrdering(\dlds\thepay\api\dataApi\parameters\TpDataApiOrdering $ordering = null)
 {
     $this->ordering = \dlds\thepay\api\dataApi\TpValueFormatter::format('TpDataApiOrdering', $ordering);
 }
 /**
  * @param string|null $scBarcodeUrl
  */
 public function setScBarcodeUrl($scBarcodeUrl = null)
 {
     $this->scBarcodeUrl = \dlds\thepay\api\dataApi\TpValueFormatter::format('string', $scBarcodeUrl);
 }
 /**
  * @param int|null $totalPages
  */
 public function setTotalPages($totalPages = null)
 {
     $this->totalPages = \dlds\thepay\api\dataApi\TpValueFormatter::format('int', $totalPages);
 }
 /**
  * @param TpDataApiPaginationResponse|null $pagination
  */
 public function setPagination(\dlds\thepay\api\dataApi\parameters\TpDataApiPaginationResponse $pagination)
 {
     $this->pagination = \dlds\thepay\api\dataApi\TpValueFormatter::format('TpDataApiPaginationResponse', $pagination);
 }