1: | <?php |
2: | |
3: | |
4: | |
5: | |
6: | namespace Worldline\Connect\Sdk\V1\Merchant\Riskassessments; |
7: | |
8: | use Worldline\Connect\Sdk\ApiResource; |
9: | use Worldline\Connect\Sdk\CallContext; |
10: | use Worldline\Connect\Sdk\Communication\ErrorResponseException; |
11: | use Worldline\Connect\Sdk\Communication\InvalidResponseException; |
12: | use Worldline\Connect\Sdk\Communication\ResponseClassMap; |
13: | use Worldline\Connect\Sdk\V1\ApiException; |
14: | use Worldline\Connect\Sdk\V1\AuthorizationException; |
15: | use Worldline\Connect\Sdk\V1\Domain\RiskAssessmentBankAccount; |
16: | use Worldline\Connect\Sdk\V1\Domain\RiskAssessmentCard; |
17: | use Worldline\Connect\Sdk\V1\Domain\RiskAssessmentResponse; |
18: | use Worldline\Connect\Sdk\V1\ExceptionFactory; |
19: | use Worldline\Connect\Sdk\V1\IdempotenceException; |
20: | use Worldline\Connect\Sdk\V1\PlatformException; |
21: | use Worldline\Connect\Sdk\V1\ReferenceException; |
22: | use Worldline\Connect\Sdk\V1\ValidationException; |
23: | |
24: | |
25: | |
26: | |
27: | class RiskassessmentsClient extends ApiResource |
28: | { |
29: | |
30: | private $responseExceptionFactory = null; |
31: | |
32: | |
33: | |
34: | |
35: | |
36: | |
37: | |
38: | |
39: | |
40: | |
41: | |
42: | |
43: | |
44: | |
45: | |
46: | |
47: | |
48: | public function bankaccounts(RiskAssessmentBankAccount $body, CallContext $callContext = null) |
49: | { |
50: | $responseClassMap = new ResponseClassMap(); |
51: | $responseClassMap->defaultSuccessResponseClassName = '\Worldline\Connect\Sdk\V1\Domain\RiskAssessmentResponse'; |
52: | $responseClassMap->defaultErrorResponseClassName = '\Worldline\Connect\Sdk\V1\Domain\ErrorResponse'; |
53: | try { |
54: | return $this->getCommunicator()->post( |
55: | $responseClassMap, |
56: | $this->instantiateUri('/v1/{merchantId}/riskassessments/bankaccounts'), |
57: | $this->getClientMetaInfo(), |
58: | $body, |
59: | null, |
60: | $callContext |
61: | ); |
62: | } catch (ErrorResponseException $e) { |
63: | throw $this->getResponseExceptionFactory()->createException( |
64: | $e->getHttpStatusCode(), |
65: | $e->getErrorResponse(), |
66: | $callContext |
67: | ); |
68: | } |
69: | } |
70: | |
71: | |
72: | |
73: | |
74: | |
75: | |
76: | |
77: | |
78: | |
79: | |
80: | |
81: | |
82: | |
83: | |
84: | |
85: | |
86: | |
87: | public function cards(RiskAssessmentCard $body, CallContext $callContext = null) |
88: | { |
89: | $responseClassMap = new ResponseClassMap(); |
90: | $responseClassMap->defaultSuccessResponseClassName = '\Worldline\Connect\Sdk\V1\Domain\RiskAssessmentResponse'; |
91: | $responseClassMap->defaultErrorResponseClassName = '\Worldline\Connect\Sdk\V1\Domain\ErrorResponse'; |
92: | try { |
93: | return $this->getCommunicator()->post( |
94: | $responseClassMap, |
95: | $this->instantiateUri('/v1/{merchantId}/riskassessments/cards'), |
96: | $this->getClientMetaInfo(), |
97: | $body, |
98: | null, |
99: | $callContext |
100: | ); |
101: | } catch (ErrorResponseException $e) { |
102: | throw $this->getResponseExceptionFactory()->createException( |
103: | $e->getHttpStatusCode(), |
104: | $e->getErrorResponse(), |
105: | $callContext |
106: | ); |
107: | } |
108: | } |
109: | |
110: | |
111: | private function getResponseExceptionFactory() |
112: | { |
113: | if (is_null($this->responseExceptionFactory)) { |
114: | $this->responseExceptionFactory = new ExceptionFactory(); |
115: | } |
116: | return $this->responseExceptionFactory; |
117: | } |
118: | } |
119: | |