| 12345678910111213141516171819202122 |
- //
- // PPOTOAuth2AppSwitchRequest.m
- // PayPalOneTouch
- //
- // Copyright © 2015 PayPal, Inc. All rights reserved.
- //
- #import "PPOTOAuth2AppSwitchRequest.h"
- @implementation PPOTOAuth2AppSwitchRequest
- - (NSDictionary *)payloadDictionary {
- NSMutableDictionary *payload = [[super payloadDictionary] mutableCopy];
- if (self.appGuid.length) {
- payload[kPPOTAppSwitchAppGuidKey] = self.appGuid;
- }
- return payload;
- }
- @end
|