1
0
Code Issues Pull Requests Packages Projects Releases Wiki Activity GitHub Gitee

34 lines
735 B
C
Raw Permalink Normal View History

2020-07-07 20:10:43 +08:00
//
// APAuthInfo.h
// APAuth
//
// Created by antfin on 17-10-24.
// Copyright (c) 2017年 AntFin. All rights reserved.
//
#import <Foundation/Foundation.h>
@interface APayAuthInfo : NSObject
@property(nonatomic, copy)NSString *appID;
@property(nonatomic, copy)NSString *pid;
@property(nonatomic, copy)NSString *redirectUri;
/**
* AuthInfo
*
* @param appIDStr ID
* @param pidStr ID
* @param uriStr alidemo://auth
*
* @return authinfo实例
*/
- (id)initWithAppID:(NSString *)appIDStr
pid:(NSString *)pidStr
redirectUri:(NSString *)uriStr;
- (NSString *)description;
- (NSString *)wapDescription;
@end