Skip to content

Commit b89db32

Browse files
committed
DEV-3556
Signed-off-by: Christian Pleintinger <christian.pleintinger@intranetx.com>
1 parent b758868 commit b89db32

File tree

2 files changed

+434
-0
lines changed

2 files changed

+434
-0
lines changed

src/Model/ContactExtensions.php

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -74,6 +74,7 @@ class ContactExtensions implements ModelInterface, ArrayAccess
7474
'barcelona' => '\Domainrobot\Model\ContactBarcelonaExtensions',
7575
'general' => '\Domainrobot\Model\ContactGeneralExtensions',
7676
'nz' => '\Domainrobot\Model\ContactNzExtensions',
77+
'scot' => '\Domainrobot\Model\ContactScotExtensions',
7778
'sport' => '\Domainrobot\Model\ContactSportExtensions',
7879
'luxe' => '\Domainrobot\Model\ContactLuxeExtensions',
7980
'madrid' => '\Domainrobot\Model\ContactMadridExtensions'
@@ -102,6 +103,7 @@ class ContactExtensions implements ModelInterface, ArrayAccess
102103
'barcelona' => null,
103104
'general' => null,
104105
'nz' => null,
106+
'scot' => null,
105107
'sport' => null,
106108
'luxe' => null,
107109
'madrid' => null
@@ -151,6 +153,7 @@ public static function swaggerFormats()
151153
'barcelona' => 'barcelona',
152154
'general' => 'general',
153155
'nz' => 'nz',
156+
'scot' => 'scot',
154157
'sport' => 'sport',
155158
'luxe' => 'luxe',
156159
'madrid' => 'madrid'
@@ -179,6 +182,7 @@ public static function swaggerFormats()
179182
'barcelona' => 'setBarcelona',
180183
'general' => 'setGeneral',
181184
'nz' => 'setNz',
185+
'scot' => 'setScot',
182186
'sport' => 'setSport',
183187
'luxe' => 'setLuxe',
184188
'madrid' => 'setMadrid'
@@ -207,6 +211,7 @@ public static function swaggerFormats()
207211
'barcelona' => 'getBarcelona',
208212
'general' => 'getGeneral',
209213
'nz' => 'getNz',
214+
'scot' => 'getScot',
210215
'sport' => 'getSport',
211216
'luxe' => 'getLuxe',
212217
'madrid' => 'getMadrid'
@@ -289,6 +294,7 @@ public function __construct(array $data = null)
289294
$this->container['barcelona'] = isset($data['barcelona']) ? $this->createData($data['barcelona'], 'barcelona') : null;
290295
$this->container['general'] = isset($data['general']) ? $this->createData($data['general'], 'general') : null;
291296
$this->container['nz'] = isset($data['nz']) ? $this->createData($data['nz'], 'nz') : null;
297+
$this->container['scot'] = isset($data['scot']) ? $this->createData($data['scot'], 'scot') : null;
292298
$this->container['sport'] = isset($data['sport']) ? $this->createData($data['sport'], 'sport') : null;
293299
$this->container['luxe'] = isset($data['luxe']) ? $this->createData($data['luxe'], 'luxe') : null;
294300
$this->container['madrid'] = isset($data['madrid']) ? $this->createData($data['madrid'], 'madrid') : null;
@@ -781,6 +787,30 @@ public function setNz($nz)
781787
return $this;
782788
}
783789

790+
/**
791+
* Gets scot
792+
*
793+
* @return \Domainrobot\Model\ContactScotExtensions
794+
*/
795+
public function getScot()
796+
{
797+
return $this->container['scot'];
798+
}
799+
800+
/**
801+
* Sets scot
802+
*
803+
* @param \Domainrobot\Model\ContactScotExtensions $scot The .scot contact extensions.
804+
*
805+
* @return $this
806+
*/
807+
public function setScot($scot)
808+
{
809+
$this->container['scot'] = $scot;
810+
811+
return $this;
812+
}
813+
784814
/**
785815
* Gets sport
786816
*

0 commit comments

Comments
 (0)