PPOTResult_Internal.h 495 B

12345678910111213141516171819
  1. //
  2. // PPOTCore_Internal.h
  3. // PayPalOneTouch
  4. //
  5. // Copyright © 2015 PayPal, Inc. All rights reserved.
  6. //
  7. #import "PPOTCore.h"
  8. @interface PPOTResult ()
  9. @property (nonatomic, readwrite, assign) PPOTResultType type;
  10. @property (nonatomic, readwrite, copy) NSDictionary *response;
  11. @property (nonatomic, readwrite, copy) NSError *error;
  12. @property (nonatomic, readwrite, assign) PPOTRequestTarget target;
  13. + (void)parseURL:(NSURL *)url completionBlock:(PPOTCompletionBlock)completionBlock;
  14. @end