Files
JJBB/Sdk/iOS/YuCheng/ThirdLibs/IpaynowPlugin/IpaynowPluginDelegate.h

31 lines
683 B
C
Raw Normal View History

2024-08-23 15:49:34 +08:00
//
// IpaynowPluginDelegate.h
// TestIpaynow
//
// Created by dby on 14-8-17.
// Copyright (c) 2014年 Ipaynow. All rights reserved.
//
#import <Foundation/Foundation.h>
typedef NS_ENUM(NSInteger, IPNPayResult) {
IPNPayResultFail , //失败
IPNPayResultSuccess , //成功
IPNPayResultCancel , //取消
IPNPayResultUnknown //未知
};
@protocol IpaynowPluginDelegate <NSObject>
/**
*
*
* @param result
* @param errorCode
* @param errorInfo
*/
- (void)iPaynowPluginResult:(IPNPayResult)result errorCode:(NSString *)errorCode errorInfo:(NSString *)errorInfo;
@end