Skip to content

Commit

Permalink
DEV-4160
Browse files Browse the repository at this point in the history
Signed-off-by: Christian Pleintinger <[email protected]>
  • Loading branch information
ChripIX committed Jun 14, 2021
1 parent 250cf20 commit 0345f4a
Show file tree
Hide file tree
Showing 89 changed files with 23,093 additions and 950 deletions.
614 changes: 614 additions & 0 deletions src/Model/AccountManager.php

Large diffs are not rendered by default.

404 changes: 404 additions & 0 deletions src/Model/AdoptExpiration.php

Large diffs are not rendered by default.

30 changes: 14 additions & 16 deletions src/Model/AuEligibilityIdTypeConstants.php
Original file line number Diff line number Diff line change
Expand Up @@ -45,15 +45,14 @@ class AuEligibilityIdTypeConstants
*/
const ACN = 'ACN';
const ABN = 'ABN';
const VIC_BN = 'VIC_BN';
const NSW_BN = 'NSW_BN';
const VIC = 'VIC';
const NSW = 'NSW';
const SA = 'SA';
const BN = 'BN';
const NT_BN = 'NT_BN';
const WA_BN = 'WA_BN';
const TAS_BN = 'TAS_BN';
const ACT_BN = 'ACT_BN';
const QLD_BN = 'QLD_BN';
const NT = 'NT';
const WA = 'WA';
const TAS = 'TAS';
const ACT = 'ACT';
const QLD = 'QLD';
const TM = 'TM';
const OTHER = 'OTHER';

Expand All @@ -66,15 +65,14 @@ public static function getAllowableEnumValues()
return [
self::ACN,
self::ABN,
self::VIC_BN,
self::NSW_BN,
self::VIC,
self::NSW,
self::SA,
self::BN,
self::NT_BN,
self::WA_BN,
self::TAS_BN,
self::ACT_BN,
self::QLD_BN,
self::NT,
self::WA,
self::TAS,
self::ACT,
self::QLD,
self::TM,
self::OTHER,
];
Expand Down
32 changes: 32 additions & 0 deletions src/Model/AuEligibilityTypeConstants.php
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,22 @@ class AuEligibilityTypeConstants
const POLITICAL_PARTY = 'POLITICAL_PARTY';
const RELIGIOUS_CHURCH_GROUPS = 'RELIGIOUS_CHURCH_GROUPS';
const OTHER = 'OTHER';
const REGISTRABLE_BODY = 'REGISTRABLE_BODY';
const INDIGENOUS_CORPORATION = 'INDIGENOUS_CORPORATION';
const REGISTERED_ORGANISATION = 'REGISTERED_ORGANISATION';
const COOPERATIVE = 'COOPERATIVE';
const TRUST = 'TRUST';
const EDUCATIONAL_INSTITUTION = 'EDUCATIONAL_INSTITUTION';
const COMMONWEALTH_ENTITY = 'COMMONWEALTH_ENTITY';
const STATUTORY_BODY = 'STATUTORY_BODY';
const TRADING_COOPERATIVE = 'TRADING_COOPERATIVE';
const COMPANY_LIMITED_BY_GUARANTEE = 'COMPANY_LIMITED_BY_GUARANTEE';
const NON_DISTRIBUTING_COOPERATIVE = 'NON_DISTRIBUTING_COOPERATIVE';
const NON_TRADING_COOPERATIVE = 'NON_TRADING_COOPERATIVE';
const CHARITABLE_TRUST = 'CHARITABLE_TRUST';
const PUBLIC_PRIVATE_ANCILLARY_FUND = 'PUBLIC_PRIVATE_ANCILLARY_FUND';
const PEAK_STATE_TERRITORY_BODY = 'PEAK_STATE_TERRITORY_BODY';
const NOT_FOR_PROFIT_COMMUNITY_GROUP = 'NOT_FOR_PROFIT_COMMUNITY_GROUP';

/**
* Gets allowable values of the enum
Expand All @@ -87,6 +103,22 @@ public static function getAllowableEnumValues()
self::POLITICAL_PARTY,
self::RELIGIOUS_CHURCH_GROUPS,
self::OTHER,
self::REGISTRABLE_BODY,
self::INDIGENOUS_CORPORATION,
self::REGISTERED_ORGANISATION,
self::COOPERATIVE,
self::TRUST,
self::EDUCATIONAL_INSTITUTION,
self::COMMONWEALTH_ENTITY,
self::STATUTORY_BODY,
self::TRADING_COOPERATIVE,
self::COMPANY_LIMITED_BY_GUARANTEE,
self::NON_DISTRIBUTING_COOPERATIVE,
self::NON_TRADING_COOPERATIVE,
self::CHARITABLE_TRUST,
self::PUBLIC_PRIVATE_ANCILLARY_FUND,
self::PEAK_STATE_TERRITORY_BODY,
self::NOT_FOR_PROFIT_COMMUNITY_GROUP,
];
}
}
Expand Down
16 changes: 16 additions & 0 deletions src/Model/AuRegistrantIdTypeConstants.php
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,14 @@ class AuRegistrantIdTypeConstants
const ACN = 'ACN';
const ABN = 'ABN';
const OTHER = 'OTHER';
const TAS = 'TAS';
const VIC = 'VIC';
const NSW = 'NSW';
const ACT = 'ACT';
const QLD = 'QLD';
const NT = 'NT';
const WA = 'WA';
const SA = 'SA';

/**
* Gets allowable values of the enum
Expand All @@ -57,6 +65,14 @@ public static function getAllowableEnumValues()
self::ACN,
self::ABN,
self::OTHER,
self::TAS,
self::VIC,
self::NSW,
self::ACT,
self::QLD,
self::NT,
self::WA,
self::SA,
];
}
}
Expand Down
Loading

0 comments on commit 0345f4a

Please sign in to comment.