add fns_site payload property support (#10)
This commit is contained in:
parent
ed84369c2c
commit
6e0adffb46
@ -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;
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user