PPOTOAuth2AppSwitchRequest.m 441 B

12345678910111213141516171819202122
  1. //
  2. // PPOTOAuth2AppSwitchRequest.m
  3. // PayPalOneTouch
  4. //
  5. // Copyright © 2015 PayPal, Inc. All rights reserved.
  6. //
  7. #import "PPOTOAuth2AppSwitchRequest.h"
  8. @implementation PPOTOAuth2AppSwitchRequest
  9. - (NSDictionary *)payloadDictionary {
  10. NSMutableDictionary *payload = [[super payloadDictionary] mutableCopy];
  11. if (self.appGuid.length) {
  12. payload[kPPOTAppSwitchAppGuidKey] = self.appGuid;
  13. }
  14. return payload;
  15. }
  16. @end