Skip to content

Commit

Permalink
Merge pull request #36 from apiship/APIS-4374
Browse files Browse the repository at this point in the history
APIS-4374 Дополнительный телефон получателя
  • Loading branch information
Jaburenje authored Nov 10, 2023
2 parents c0c4042 + c038c6d commit 0879c4c
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions src/Entity/Request/Part/Orders/Recipient.php
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,12 @@ class Recipient extends AbstractRequestPart
* @var string Телефон контактного лица
*/
protected $phone;

/**
* @var string|null Дополнительный телефон контактного лица
*/
protected $additionalPhone;

/**
* @var string Email контактного лица
*/
Expand Down Expand Up @@ -487,4 +493,24 @@ public function setLng(?float $lng): self
$this->lng = $lng;
return $this;
}

/**
* @return string|null
*/
public function getAdditionalPhone(): ?string
{
return $this->additionalPhone;
}

/**
* @param string|null $additionalPhone
* @return Recipient
*/
public function setAdditionalPhone(?string $additionalPhone): Recipient
{
$this->additionalPhone = $additionalPhone;
return $this;
}


}

0 comments on commit 0879c4c

Please sign in to comment.