| 1 | <?php |
||
| 9 | class KycProofResultBaseField |
||
| 10 | { |
||
| 11 | const REQUEST_ID = 'requestId'; |
||
| 12 | const TYPE = 'type'; |
||
| 13 | const CREATED_AT = 'createdAt'; |
||
| 14 | const VERIFICATION_VIDEO = 'verificationVideo'; |
||
| 15 | const FACE_PROOF = 'faceProof'; |
||
| 16 | const DOCUMENT_PROOF = 'documentProof'; |
||
| 17 | const DOCUMENT_TWO_PROOF = 'documentTwoProof'; |
||
| 18 | const CONSENT_PROOF = 'consentProof'; |
||
| 19 | |||
| 20 | /** |
||
| 21 | * Get all fields |
||
| 22 | * |
||
| 23 | * @return string[] |
||
| 24 | */ |
||
| 25 | public static function getAll() |
||
| 38 | } |
||
| 39 |