1
0
mirror of synced 2024-11-21 20:46:03 +03:00

add fns_site payload property support (#10)

This commit is contained in:
CrazyProgg 2019-08-22 16:49:05 +03:00 committed by Alexey
parent ed84369c2c
commit 6e0adffb46

View File

@ -89,6 +89,16 @@ class Payload
*/
private $fiscalDocumentAttribute;
/**
* Адрес сайта ФНС
*
* @var string
* @Serializer\Groups({"get"})
* @Serializer\SerializedName("fns_site")
* @Serializer\Type("string")
*/
private $fnsSite;
/**
* @return mixed
*/
@ -248,4 +258,24 @@ class Payload
return $this;
}
/**
* @return string
*/
public function getFnsSite()
{
return $this->fnsSite;
}
/**
* @param $string $fnsSite
*
* @return $this
*/
public function setFnsSite($fnsSite)
{
$this->fnsSite = $fnsSite;
return $this;
}
}