| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889 |
- <?php
- namespace Srmklive\PayPal\Tests\Mocks\Responses;
- use GuzzleHttp\Utils;
- trait PaymentCaptures
- {
- /**
- * @return array
- */
- private function mockGetCapturedPaymentDetailsResponse(): array
- {
- return Utils::jsonDecode('{
- "id": "2GG279541U471931P",
- "status": "COMPLETED",
- "status_details": {},
- "amount": {
- "total": "10.99",
- "currency": "USD"
- },
- "final_capture": true,
- "seller_protection": {
- "status": "ELIGIBLE",
- "dispute_categories": [
- "ITEM_NOT_RECEIVED",
- "UNAUTHORIZED_TRANSACTION"
- ]
- },
- "seller_receivable_breakdown": {
- "gross_amount": {
- "total": "10.99",
- "currency": "USD"
- },
- "paypal_fee": {
- "value": "0.33",
- "currency": "USD"
- },
- "net_amount": {
- "value": "10.66",
- "currency": "USD"
- }
- },
- "invoice_id": "INVOICE-123",
- "create_time": "2017-09-11T23:24:01Z",
- "update_time": "2017-09-11T23:24:01Z",
- "links": [
- {
- "href": "https://api.paypal.com/v2/payments/captures/2GG279541U471931P",
- "rel": "self",
- "method": "GET"
- },
- {
- "href": "https://api.paypal.com/v2/payments/captures/2GG279541U471931P/refund",
- "rel": "refund",
- "method": "POST"
- },
- {
- "href": "https://api.paypal.com/v2/payments/authorizations/0VF52814937998046",
- "rel": "up",
- "method": "GET"
- }
- ]
- }', true);
- }
- /**
- * @return array
- */
- private function mockRefundCapturedPaymentResponse(): array
- {
- return Utils::jsonDecode('{
- "id": "1JU08902781691411",
- "status": "COMPLETED",
- "links": [
- {
- "rel": "self",
- "method": "GET",
- "href": "https://api.paypal.com/v2/payments/refunds/1JU08902781691411"
- },
- {
- "rel": "up",
- "method": "GET",
- "href": "https://api.paypal.com/v2/payments/captures/2GG279541U471931P"
- }
- ]
- }', true);
- }
- }
|