| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100 |
- <?php
- namespace Srmklive\PayPal\Tests\Mocks\Requests;
- use GuzzleHttp\Utils;
- trait PaymentExperienceWebProfiles
- {
- /**
- * @return array
- */
- private function mockCreateWebProfileParams(): array
- {
- return Utils::jsonDecode('[
- {
- "id": "XP-GCUV-X35G-HNEY-5MJY",
- "name": "exampleProfile",
- "flow_config": {
- "landing_page_type": "billing",
- "bank_txn_pending_url": "https://example.com/flow_config/"
- },
- "input_fields": {
- "no_shipping": 1,
- "address_override": 1
- },
- "presentation": {
- "logo_image": "https://example.com/logo_image/"
- }
- },
- {
- "id": "XP-A88A-LYLW-8Y3X-E5ER",
- "name": "exampleProfile",
- "flow_config": {
- "landing_page_type": "billing",
- "bank_txn_pending_url": "https://example.com/flow_config/"
- },
- "input_fields": {
- "no_shipping": 1,
- "address_override": 1
- },
- "presentation": {
- "logo_image": "https://example.com/logo_image/"
- }
- },
- {
- "id": "XP-RFV4-PVD8-AGHJ-8E5J",
- "name": "exampleProfile",
- "flow_config": {
- "bank_txn_pending_url": "https://example.com/flow_config/"
- },
- "input_fields": {
- "no_shipping": 1,
- "address_override": 1
- },
- "presentation": {
- "logo_image": "https://example.com/logo_image/"
- }
- }
- ]', true);
- }
- /**
- * @return array
- */
- private function partiallyUpdateWebProfileParams(): array
- {
- return Utils::jsonDecode('[
- {
- "op": "add",
- "path": "/presentation/brand_name",
- "value": "new_brand_name"
- },
- {
- "op": "remove",
- "path": "/flow_config/landing_page_type"
- }
- ]', true);
- }
- /**
- * @return array
- */
- private function updateWebProfileParams(): array
- {
- return Utils::jsonDecode('{
- "name": "exampleProfile",
- "presentation": {
- "logo_image": "https://example.com/logo_image/"
- },
- "input_fields": {
- "no_shipping": 1,
- "address_override": 1
- },
- "flow_config": {
- "landing_page_type": "billing",
- "bank_txn_pending_url": "https://example.com/flow_config/"
- }
- }', true);
- }
- }
|