-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
103 changed files
with
4,478 additions
and
390 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
122 changes: 122 additions & 0 deletions
122
...cessing/genesis/src/Genesis/API/Constants/NonFinancial/KYC/VerificationAddressesTypes.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,122 @@ | ||
<?php | ||
/** | ||
* Permission is hereby granted, free of charge, to any person obtaining a copy | ||
* of this software and associated documentation files (the "Software"), to deal | ||
* in the Software without restriction, including without limitation the rights | ||
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | ||
* copies of the Software, and to permit persons to whom the Software is | ||
* furnished to do so, subject to the following conditions: | ||
* | ||
* The above copyright notice and this permission notice shall be included in | ||
* all copies or substantial portions of the Software. | ||
* | ||
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
* FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE | ||
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | ||
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | ||
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN | ||
* THE SOFTWARE. | ||
* | ||
* @author emerchantpay | ||
* @copyright Copyright (C) 2015-2023 emerchantpay Ltd. | ||
* @license http://opensource.org/licenses/MIT The MIT License | ||
*/ | ||
|
||
namespace Genesis\API\Constants\NonFinancial\KYC; | ||
|
||
use Genesis\Utils\Common; | ||
|
||
/** | ||
* class VerificationAddressesTypes | ||
* @package Genesis\API\Constants\NonFinancial\KYC | ||
*/ | ||
class VerificationAddressesTypes | ||
{ | ||
/** | ||
* Verification Address type ID Card | ||
* | ||
* @var string | ||
*/ | ||
const ID_CARD = 'id_card'; | ||
|
||
/** | ||
* Verification Address type Passport | ||
* | ||
* @var string | ||
*/ | ||
const PASSPORT = 'passport'; | ||
|
||
/** | ||
* Verification Address type Driving License | ||
* | ||
* @var string | ||
*/ | ||
const DRIVING_LICENSE = 'driving_license'; | ||
|
||
/** | ||
* Verification Address type Utility bill | ||
* | ||
* @var string | ||
*/ | ||
const UTILITY_BILL = 'utility_bill'; | ||
|
||
/** | ||
* Verification Address type Bank Statement | ||
* | ||
* @var string | ||
*/ | ||
const BANK_STATEMENT = 'bank_statement'; | ||
|
||
/** | ||
* Verification Address type Rent Agreement | ||
* | ||
* @var string | ||
*/ | ||
const RENT_AGREEMENT = 'rent_agreement'; | ||
|
||
/** | ||
* Verification Address type Employer Letter | ||
* | ||
* @var string | ||
*/ | ||
const EMPLOYER_LETTER = 'employer_letter'; | ||
|
||
/** | ||
* Verification Address type Insurance Agreement | ||
* | ||
* @var string | ||
*/ | ||
const INSURANCE_AGREEMENT = 'insurance_agreement'; | ||
|
||
/** | ||
* Verification Address type Tax Bill | ||
* | ||
* @var string | ||
*/ | ||
const TAX_BILL = 'tax_bill'; | ||
|
||
/** | ||
* Verification Address type Envelope | ||
* | ||
* @var string | ||
*/ | ||
const ENVELOPE = 'envelope'; | ||
|
||
/** | ||
* Verification Address type CPR/Smart Card Reader | ||
* | ||
* @var string | ||
*/ | ||
const CPR_SMART_CARD_READER = 'cpr_smart_card_reader_copy'; | ||
|
||
/** | ||
* Read and return all constants as array | ||
* | ||
* @return array | ||
*/ | ||
public static function getAll() | ||
{ | ||
return Common::getClassConstants(self::class); | ||
} | ||
} |
64 changes: 64 additions & 0 deletions
64
...ocessing/genesis/src/Genesis/API/Constants/NonFinancial/KYC/VerificationDocumentTypes.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,64 @@ | ||
<?php | ||
/** | ||
* Permission is hereby granted, free of charge, to any person obtaining a copy | ||
* of this software and associated documentation files (the "Software"), to deal | ||
* in the Software without restriction, including without limitation the rights | ||
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | ||
* copies of the Software, and to permit persons to whom the Software is | ||
* furnished to do so, subject to the following conditions: | ||
* | ||
* The above copyright notice and this permission notice shall be included in | ||
* all copies or substantial portions of the Software. | ||
* | ||
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
* FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE | ||
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | ||
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | ||
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN | ||
* THE SOFTWARE. | ||
* | ||
* @author emerchantpay | ||
* @copyright Copyright (C) 2015-2023 emerchantpay Ltd. | ||
* @license http://opensource.org/licenses/MIT The MIT License | ||
*/ | ||
|
||
namespace Genesis\API\Constants\NonFinancial\KYC; | ||
|
||
use Genesis\Utils\Common; | ||
|
||
class VerificationDocumentTypes | ||
{ | ||
/** | ||
* Verifications Document type Passport | ||
* @var string | ||
*/ | ||
const PASSPORT = 'passport'; | ||
|
||
/** | ||
* Verifications Document type ID Card | ||
* @var string | ||
*/ | ||
const ID_CARD = 'id_card'; | ||
|
||
/** | ||
* Verifications Document type Driving License | ||
* @var string | ||
*/ | ||
const DRIVING_LICENSE = 'driving_license'; | ||
|
||
/** | ||
* Verifications Document type Credit or Debit card | ||
* @var string | ||
*/ | ||
const CC_DEB_CARD = 'credit_or_debit_card'; | ||
|
||
/** | ||
* Read and return all constants as array | ||
* @return array | ||
*/ | ||
public static function getAll() | ||
{ | ||
return Common::getClassConstants(self::class); | ||
} | ||
} |
Oops, something went wrong.