Nessuna descrizione

AlibcTradeResult.h 970B

12345678910111213141516171819202122232425262728293031323334353637
  1. /*
  2. * AlibcTradeResult.h
  3. *
  4. * 阿里百川电商
  5. * 项目名称:阿里巴巴电商 AlibcTradeSDK
  6. * 版本号:3.1.1.206
  7. * 发布时间:2017-09-04
  8. * 开发团队:阿里巴巴百川商业化团队
  9. * 阿里巴巴电商SDK答疑群号:1488705339 2071154343 (阿里旺旺)
  10. * Copyright (c) 2016-2019 阿里巴巴-移动事业群-百川. All rights reserved.
  11. */
  12. #import <Foundation/Foundation.h>
  13. @class AlibcTradePayResult;
  14. /** 交易结果类型 */
  15. typedef NS_ENUM (NSUInteger, AlibcTradeResultType) {
  16. /** 成功添加到购物车 */
  17. AlibcTradeResultTypeAddCard,
  18. /** 成功支付 */
  19. AlibcTradeResultTypePaySuccess
  20. };
  21. /** 交易结果 */
  22. @interface AlibcTradeResult : NSObject
  23. /** 交易结果的类型 */
  24. @property(nonatomic, assign) AlibcTradeResultType result;
  25. /** 支付结果,只有Result为 AlibcTradeResultTypePaySuccess时有效 */
  26. @property(nonatomic, strong, nullable) AlibcTradePayResult *payResult;
  27. @end