Skip to content

Commit

Permalink
DEV-4412 DEV-4855
Browse files Browse the repository at this point in the history
Signed-off-by: Christian Pleintinger <[email protected]>
  • Loading branch information
ChripIX committed Sep 21, 2021
1 parent eecb143 commit 65a21b3
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions src/Model/ContactIeExtensions.php
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,7 @@ class ContactIeExtensions implements ModelInterface, ArrayAccess
*/
protected static $swaggerTypes = [
'contactType' => 'string',
'croNumber' => 'string',
'supportingNumber' => 'string'
];

Expand All @@ -68,6 +69,7 @@ class ContactIeExtensions implements ModelInterface, ArrayAccess
*/
protected static $swaggerFormats = [
'contactType' => null,
'croNumber' => null,
'supportingNumber' => null
];

Expand Down Expand Up @@ -99,6 +101,7 @@ public static function swaggerFormats()
*/
protected static $attributeMap = [
'contactType' => 'contactType',
'croNumber' => 'croNumber',
'supportingNumber' => 'supportingNumber'
];

Expand All @@ -109,6 +112,7 @@ public static function swaggerFormats()
*/
protected static $setters = [
'contactType' => 'setContactType',
'croNumber' => 'setCroNumber',
'supportingNumber' => 'setSupportingNumber'
];

Expand All @@ -119,6 +123,7 @@ public static function swaggerFormats()
*/
protected static $getters = [
'contactType' => 'getContactType',
'croNumber' => 'getCroNumber',
'supportingNumber' => 'getSupportingNumber'
];

Expand Down Expand Up @@ -183,6 +188,7 @@ public function getModelName()
public function __construct(array $data = null)
{
$this->container['contactType'] = isset($data['contactType']) ? $this->createData($data['contactType'], 'contactType') : null;
$this->container['croNumber'] = isset($data['croNumber']) ? $this->createData($data['croNumber'], 'croNumber') : null;
$this->container['supportingNumber'] = isset($data['supportingNumber']) ? $this->createData($data['supportingNumber'], 'supportingNumber') : null;
}

Expand Down Expand Up @@ -289,6 +295,30 @@ public function setContactType($contactType)
return $this;
}

/**
* Gets croNumber
*
* @return string
*/
public function getCroNumber()
{
return $this->container['croNumber'];
}

/**
* Sets croNumber
*
* @param string $croNumber EPP Element = <fury:key>IE_CRO_NUMBER Description: The Companies Registration Office (CRO) identifier that can be used to ensure the company is in a valid state to be registering domains.
*
* @return $this
*/
public function setCroNumber($croNumber)
{
$this->container['croNumber'] = $croNumber;

return $this;
}

/**
* Gets supportingNumber
*
Expand Down

0 comments on commit 65a21b3

Please sign in to comment.