ifish/Ifish/AlibcTradeSDK-3.1.1.96/Frameworks/AlibcTradeBiz.framework/Headers/AlibcTradeError.h

37 lines
1.0 KiB
Objective-C
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

/*
* AlibcTradeError.h
*
* 阿里百川电商
* 项目名称:阿里巴巴电商 AlibcTradeBiz
* 版本号3.1.1.96
* 发布时间2017-03-24
* 开发团队:阿里巴巴百川商业化团队
* 阿里巴巴电商SDK答疑群号1229144682(阿里旺旺)
* Copyright (c) 2016-2019 阿里巴巴-移动事业群-百川. All rights reserved.
*/
#ifndef AlibcError_h
#define AlibcError_h
#import <Foundation/Foundation.h>
/** 交易错误码 */
typedef NS_ENUM (NSUInteger, AlibcTradeError) {
/** 交易链路失败 */
AlibcErrorProcessFailed = 3001,
/** 交易链路中用户取消了操作 */
AlibcErrorCancelled = 3002,
/** 交易链路中发生支付但是支付失败 */
AlibcErrorPaymentFailed = 3003,
/** itemId无效 */
AlibcErrorInvalidItemID = 3004,
/** page url为空 */
AlibcErrorNullPageURL = 3005,
/** shopId无效 */
AlibcErrorInvalidShopID = 3006,
};
extern NSString *const AlibcTradeErrorDomain;
#endif /* AlibcError_h */