Skip to content

Commit

Permalink
DEV-10537
Browse files Browse the repository at this point in the history
Signed-off-by: Christian Pleintinger <[email protected]>
  • Loading branch information
ChripIX committed Nov 6, 2024
1 parent 4e376a2 commit dd380c6
Show file tree
Hide file tree
Showing 186 changed files with 8,347 additions and 1,688 deletions.
12 changes: 6 additions & 6 deletions src/Model/AccountManager.php
Original file line number Diff line number Diff line change
Expand Up @@ -59,8 +59,8 @@ class AccountManager implements ModelInterface, ArrayAccess
protected static $swaggerTypes = [
'created' => '\DateTime',
'updated' => '\DateTime',
'owner' => '\Domainrobot\Model\BasicUser',
'updater' => '\Domainrobot\Model\BasicUser',
'owner' => '\Domainrobot\Model\User',
'updater' => '\Domainrobot\Model\User',
'id' => 'int',
'name' => 'string',
'phone' => '\Domainrobot\Model\Phone',
Expand Down Expand Up @@ -352,7 +352,7 @@ public function setUpdated($updated)
/**
* Gets owner
*
* @return \Domainrobot\Model\BasicUser
* @return \Domainrobot\Model\User
*/
public function getOwner()
{
Expand All @@ -362,7 +362,7 @@ public function getOwner()
/**
* Sets owner
*
* @param \Domainrobot\Model\BasicUser $owner The object owner.
* @param \Domainrobot\Model\User $owner The object owner.
*
* @return $this
*/
Expand All @@ -376,7 +376,7 @@ public function setOwner($owner)
/**
* Gets updater
*
* @return \Domainrobot\Model\BasicUser
* @return \Domainrobot\Model\User
*/
public function getUpdater()
{
Expand All @@ -386,7 +386,7 @@ public function getUpdater()
/**
* Sets updater
*
* @param \Domainrobot\Model\BasicUser $updater User who performed the last update.
* @param \Domainrobot\Model\User $updater User who performed the last update.
*
* @return $this
*/
Expand Down
12 changes: 6 additions & 6 deletions src/Model/Article.php
Original file line number Diff line number Diff line change
Expand Up @@ -59,8 +59,8 @@ class Article implements ModelInterface, ArrayAccess
protected static $swaggerTypes = [
'created' => '\DateTime',
'updated' => '\DateTime',
'owner' => '\Domainrobot\Model\BasicUser',
'updater' => '\Domainrobot\Model\BasicUser',
'owner' => '\Domainrobot\Model\User',
'updater' => '\Domainrobot\Model\User',
'type' => 'string',
'category' => 'string',
'label' => 'string'
Expand Down Expand Up @@ -352,7 +352,7 @@ public function setUpdated($updated)
/**
* Gets owner
*
* @return \Domainrobot\Model\BasicUser
* @return \Domainrobot\Model\User
*/
public function getOwner()
{
Expand All @@ -362,7 +362,7 @@ public function getOwner()
/**
* Sets owner
*
* @param \Domainrobot\Model\BasicUser $owner The object owner.
* @param \Domainrobot\Model\User $owner The object owner.
*
* @return $this
*/
Expand All @@ -376,7 +376,7 @@ public function setOwner($owner)
/**
* Gets updater
*
* @return \Domainrobot\Model\BasicUser
* @return \Domainrobot\Model\User
*/
public function getUpdater()
{
Expand All @@ -386,7 +386,7 @@ public function getUpdater()
/**
* Sets updater
*
* @param \Domainrobot\Model\BasicUser $updater User who performed the last update.
* @param \Domainrobot\Model\User $updater User who performed the last update.
*
* @return $this
*/
Expand Down
10 changes: 10 additions & 0 deletions src/Model/AuEligibilityIdTypeConstants.php
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,11 @@ class AuEligibilityIdTypeConstants
const QLD = 'QLD';
const TM = 'TM';
const OTHER = 'OTHER';
const ASL = 'ASL';
const ACECQA = 'ACECQA';
const CRICOS = 'CRICOS';
const RTO = 'RTO';
const TEQSA = 'TEQSA';

/**
* Gets allowable values of the enum
Expand All @@ -75,6 +80,11 @@ public static function getAllowableEnumValues()
self::QLD,
self::TM,
self::OTHER,
self::ASL,
self::ACECQA,
self::CRICOS,
self::RTO,
self::TEQSA,
];
}
}
Expand Down
34 changes: 34 additions & 0 deletions src/Model/AuEligibilityTypeConstants.php
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,23 @@ class AuEligibilityTypeConstants
const PEAK_STATE_TERRITORY_BODY = 'PEAK_STATE_TERRITORY_BODY';
const NOT_FOR_PROFIT_COMMUNITY_GROUP = 'NOT_FOR_PROFIT_COMMUNITY_GROUP';
const FOREIGN_EMBASSY_OR_CONSULATE = 'FOREIGN_EMBASSY_OR_CONSULATE';
const UNION = 'UNION';
const BODY_SERVING_OVERSEAS_STUDENTS = 'BODY_SERVING_OVERSEAS_STUDENTS';
const CHILD_CARE_CENTER = 'CHILD_CARE_CENTER';
const EDUCATION_AND_CARE_SERVICES_CHILD_CARE = 'EDUCATION_AND_CARE_SERVICES_CHILD_CARE';
const GOVERNMENT_BODY = 'GOVERNMENT_BODY';
const GOVERNMENT_SCHOOL = 'GOVERNMENT_SCHOOL';
const HIGHER_EDUCATION_INSTITUTION = 'HIGHER_EDUCATION_INSTITUTION';
const NATIONAL_BODY = 'NATIONAL_BODY';
const NON_GOVERNMENT_SCHOOL = 'NON_GOVERNMENT_SCHOOL';
const PARENT_AND_PROFESSIONAL_ASSOCIATION_ORGANISATION = 'PARENT_AND_PROFESSIONAL_ASSOCIATION_ORGANISATION';
const PRE_SCHOOL = 'PRE_SCHOOL';
const PROVIDER_OF_NON_ACCREDITED_TRAINING = 'PROVIDER_OF_NON_ACCREDITED_TRAINING';
const RESEARCH_ORGANISATION = 'RESEARCH_ORGANISATION';
const TRAINING_ORGANISATION = 'TRAINING_ORGANISATION';
const INDUSTRY_ORGANISATION = 'INDUSTRY_ORGANISATION';
const CHARITY_TRADE = 'CHARITY_TRADE';
const STATUTORY_BODY_TRADING_COOPERATIVE = 'STATUTORY_BODY_TRADING_COOPERATIVE';

/**
* Gets allowable values of the enum
Expand Down Expand Up @@ -121,6 +138,23 @@ public static function getAllowableEnumValues()
self::PEAK_STATE_TERRITORY_BODY,
self::NOT_FOR_PROFIT_COMMUNITY_GROUP,
self::FOREIGN_EMBASSY_OR_CONSULATE,
self::UNION,
self::BODY_SERVING_OVERSEAS_STUDENTS,
self::CHILD_CARE_CENTER,
self::EDUCATION_AND_CARE_SERVICES_CHILD_CARE,
self::GOVERNMENT_BODY,
self::GOVERNMENT_SCHOOL,
self::HIGHER_EDUCATION_INSTITUTION,
self::NATIONAL_BODY,
self::NON_GOVERNMENT_SCHOOL,
self::PARENT_AND_PROFESSIONAL_ASSOCIATION_ORGANISATION,
self::PRE_SCHOOL,
self::PROVIDER_OF_NON_ACCREDITED_TRAINING,
self::RESEARCH_ORGANISATION,
self::TRAINING_ORGANISATION,
self::INDUSTRY_ORGANISATION,
self::CHARITY_TRADE,
self::STATUTORY_BODY_TRADING_COOPERATIVE,
];
}
}
Expand Down
6 changes: 6 additions & 0 deletions src/Model/AuRegistrantIdTypeConstants.php
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,9 @@ class AuRegistrantIdTypeConstants
const NT = 'NT';
const WA = 'WA';
const SA = 'SA';
const TM = 'TM';
const ARBN = 'ARBN';
const ICN = 'ICN';

/**
* Gets allowable values of the enum
Expand All @@ -73,6 +76,9 @@ public static function getAllowableEnumValues()
self::NT,
self::WA,
self::SA,
self::TM,
self::ARBN,
self::ICN,
];
}
}
Expand Down
12 changes: 6 additions & 6 deletions src/Model/AuthSession.php
Original file line number Diff line number Diff line change
Expand Up @@ -59,8 +59,8 @@ class AuthSession implements ModelInterface, ArrayAccess
protected static $swaggerTypes = [
'created' => '\DateTime',
'updated' => '\DateTime',
'owner' => '\Domainrobot\Model\BasicUser',
'updater' => '\Domainrobot\Model\BasicUser',
'owner' => '\Domainrobot\Model\User',
'updater' => '\Domainrobot\Model\User',
'language' => 'string',
'configuration' => '\Domainrobot\Model\Configuration'
];
Expand Down Expand Up @@ -340,7 +340,7 @@ public function setUpdated($updated)
/**
* Gets owner
*
* @return \Domainrobot\Model\BasicUser
* @return \Domainrobot\Model\User
*/
public function getOwner()
{
Expand All @@ -350,7 +350,7 @@ public function getOwner()
/**
* Sets owner
*
* @param \Domainrobot\Model\BasicUser $owner The object owner.
* @param \Domainrobot\Model\User $owner The object owner.
*
* @return $this
*/
Expand All @@ -364,7 +364,7 @@ public function setOwner($owner)
/**
* Gets updater
*
* @return \Domainrobot\Model\BasicUser
* @return \Domainrobot\Model\User
*/
public function getUpdater()
{
Expand All @@ -374,7 +374,7 @@ public function getUpdater()
/**
* Sets updater
*
* @param \Domainrobot\Model\BasicUser $updater User who performed the last update.
* @param \Domainrobot\Model\User $updater User who performed the last update.
*
* @return $this
*/
Expand Down
12 changes: 6 additions & 6 deletions src/Model/AutoDeleteDomain.php
Original file line number Diff line number Diff line change
Expand Up @@ -59,8 +59,8 @@ class AutoDeleteDomain implements ModelInterface, ArrayAccess
protected static $swaggerTypes = [
'created' => '\DateTime',
'updated' => '\DateTime',
'owner' => '\Domainrobot\Model\BasicUser',
'updater' => '\Domainrobot\Model\BasicUser',
'owner' => '\Domainrobot\Model\User',
'updater' => '\Domainrobot\Model\User',
'domain' => '\Domainrobot\Model\Domain',
'changed' => '\DateTime',
'nicMemberLabel' => 'string',
Expand Down Expand Up @@ -364,7 +364,7 @@ public function setUpdated($updated)
/**
* Gets owner
*
* @return \Domainrobot\Model\BasicUser
* @return \Domainrobot\Model\User
*/
public function getOwner()
{
Expand All @@ -374,7 +374,7 @@ public function getOwner()
/**
* Sets owner
*
* @param \Domainrobot\Model\BasicUser $owner The object owner.
* @param \Domainrobot\Model\User $owner The object owner.
*
* @return $this
*/
Expand All @@ -388,7 +388,7 @@ public function setOwner($owner)
/**
* Gets updater
*
* @return \Domainrobot\Model\BasicUser
* @return \Domainrobot\Model\User
*/
public function getUpdater()
{
Expand All @@ -398,7 +398,7 @@ public function getUpdater()
/**
* Sets updater
*
* @param \Domainrobot\Model\BasicUser $updater User who performed the last update.
* @param \Domainrobot\Model\User $updater User who performed the last update.
*
* @return $this
*/
Expand Down
12 changes: 6 additions & 6 deletions src/Model/BackupMx.php
Original file line number Diff line number Diff line change
Expand Up @@ -61,8 +61,8 @@ class BackupMx implements ModelInterface, ArrayAccess
'idn' => 'string',
'created' => '\DateTime',
'updated' => '\DateTime',
'owner' => '\Domainrobot\Model\BasicUser',
'updater' => '\Domainrobot\Model\BasicUser'
'owner' => '\Domainrobot\Model\User',
'updater' => '\Domainrobot\Model\User'
];

/**
Expand Down Expand Up @@ -391,7 +391,7 @@ public function setUpdated($updated)
/**
* Gets owner
*
* @return \Domainrobot\Model\BasicUser
* @return \Domainrobot\Model\User
*/
public function getOwner()
{
Expand All @@ -401,7 +401,7 @@ public function getOwner()
/**
* Sets owner
*
* @param \Domainrobot\Model\BasicUser $owner The object owner.
* @param \Domainrobot\Model\User $owner The object owner.
*
* @return $this
*/
Expand All @@ -415,7 +415,7 @@ public function setOwner($owner)
/**
* Gets updater
*
* @return \Domainrobot\Model\BasicUser
* @return \Domainrobot\Model\User
*/
public function getUpdater()
{
Expand All @@ -425,7 +425,7 @@ public function getUpdater()
/**
* Sets updater
*
* @param \Domainrobot\Model\BasicUser $updater User who performed the last update.
* @param \Domainrobot\Model\User $updater User who performed the last update.
*
* @return $this
*/
Expand Down
12 changes: 6 additions & 6 deletions src/Model/BasicCustomer.php
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ class BasicCustomer implements ModelInterface, ArrayAccess
'taxable' => 'bool',
'card' => '\Domainrobot\Model\Card',
'contracts' => '\Domainrobot\Model\CustomerContract[]',
'billingUsers' => '\Domainrobot\Model\BasicUser[]',
'billingUsers' => '\Domainrobot\Model\User[]',
'comments' => '\Domainrobot\Model\Comment[]',
'contacts' => '\Domainrobot\Model\BasicCustomerContact[]',
'account' => '\Domainrobot\Model\Account',
Expand Down Expand Up @@ -629,7 +629,7 @@ public function getNumber()
/**
* Sets number
*
* @param int $number number
* @param int $number Customer number
*
* @return $this
*/
Expand All @@ -653,7 +653,7 @@ public function getClient()
/**
* Sets client
*
* @param string $client client
* @param string $client Account Label.
*
* @return $this
*/
Expand Down Expand Up @@ -684,7 +684,7 @@ public function getGroup()
/**
* Sets group
*
* @param int $group group
* @param int $group Customer group, first 5 numbers of the account number. e.g.
*
* @return $this
*/
Expand Down Expand Up @@ -1367,7 +1367,7 @@ public function setContracts($contracts)
/**
* Gets billingUsers
*
* @return \Domainrobot\Model\BasicUser[]
* @return \Domainrobot\Model\User[]
*/
public function getBillingUsers()
{
Expand All @@ -1377,7 +1377,7 @@ public function getBillingUsers()
/**
* Sets billingUsers
*
* @param \Domainrobot\Model\BasicUser[] $billingUsers The billing users.
* @param \Domainrobot\Model\User[] $billingUsers The billing users.
*
* @return $this
*/
Expand Down
Loading

0 comments on commit dd380c6

Please sign in to comment.