Skip to content

Commit

Permalink
chore: update SDK from api-definitions (#703)
Browse files Browse the repository at this point in the history
Co-authored-by: rebilly-machine-user <[email protected]>
  • Loading branch information
rebilly-machine-user and rebilly-machine-user authored Jun 25, 2024
1 parent 8387805 commit 6ce55d9
Show file tree
Hide file tree
Showing 6 changed files with 35 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .changeset/cuddly-parents-relax.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"@rebilly/client-php": patch
---

feat(api-definitions): Add matchLevel to KycDocument Rebilly/rebilly#6027
6 changes: 6 additions & 0 deletions src/Model/ProofOfAddressKycDocument.php
Original file line number Diff line number Diff line change
Expand Up @@ -82,6 +82,12 @@ class ProofOfAddressKycDocument implements KycDocument

public const STATUS_ARCHIVED = 'archived';

public const MATCH_LEVEL_1 = '1';

public const MATCH_LEVEL_2 = '2';

public const MATCH_LEVEL_3 = '3';

private array $fields = [];

public function __construct(array $data = [])
Expand Down
6 changes: 6 additions & 0 deletions src/Model/ProofOfCreditFileKycDocument.php
Original file line number Diff line number Diff line change
Expand Up @@ -82,6 +82,12 @@ class ProofOfCreditFileKycDocument implements KycDocument

public const STATUS_ARCHIVED = 'archived';

public const MATCH_LEVEL_1 = '1';

public const MATCH_LEVEL_2 = '2';

public const MATCH_LEVEL_3 = '3';

private array $fields = [];

public function __construct(array $data = [])
Expand Down
6 changes: 6 additions & 0 deletions src/Model/ProofOfFundsKycDocument.php
Original file line number Diff line number Diff line change
Expand Up @@ -82,6 +82,12 @@ class ProofOfFundsKycDocument implements KycDocument

public const STATUS_ARCHIVED = 'archived';

public const MATCH_LEVEL_1 = '1';

public const MATCH_LEVEL_2 = '2';

public const MATCH_LEVEL_3 = '3';

private array $fields = [];

public function __construct(array $data = [])
Expand Down
6 changes: 6 additions & 0 deletions src/Model/ProofOfIdentityKycDocument.php
Original file line number Diff line number Diff line change
Expand Up @@ -82,6 +82,12 @@ class ProofOfIdentityKycDocument implements KycDocument

public const STATUS_ARCHIVED = 'archived';

public const MATCH_LEVEL_1 = '1';

public const MATCH_LEVEL_2 = '2';

public const MATCH_LEVEL_3 = '3';

private array $fields = [];

public function __construct(array $data = [])
Expand Down
6 changes: 6 additions & 0 deletions src/Model/ProofOfPurchaseKycDocument.php
Original file line number Diff line number Diff line change
Expand Up @@ -82,6 +82,12 @@ class ProofOfPurchaseKycDocument implements KycDocument

public const STATUS_ARCHIVED = 'archived';

public const MATCH_LEVEL_1 = '1';

public const MATCH_LEVEL_2 = '2';

public const MATCH_LEVEL_3 = '3';

private array $fields = [];

public function __construct(array $data = [])
Expand Down

0 comments on commit 6ce55d9

Please sign in to comment.