-
Notifications
You must be signed in to change notification settings - Fork 21
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Updated PnP and CoreSDK with EMI and Review Order
- Loading branch information
1 parent
900c46d
commit 6cb9dea
Showing
62 changed files
with
169 additions
and
36 deletions.
There are no files selected for viewing
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
// | ||
// PUMEMI.h | ||
// PayUMoneyCoreSDK | ||
// | ||
// Created by Rajvinder Singh on 3/23/18. | ||
// Copyright © 2018 PayU Payments Private Limited. All rights reserved. | ||
// | ||
|
||
#import "PUMCCDC.h" | ||
|
||
@interface PUMEMI : PUMCCDC | ||
|
||
/// eg., AXIS, HDFC, SBI etc | ||
@property (strong, nonatomic) NSString *bankCode; | ||
|
||
/// eg., AXIS03, AXIS06, HDFC03, HDFC09 etc | ||
@property (strong, nonatomic) NSString *emiType; | ||
|
||
@property (assign, nonatomic) BOOL isCreditCard; | ||
|
||
@end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
Binary file modified
BIN
-3 Bytes
(100%)
CoreSDK/PayUMoneyCoreSDK.framework/PUCBAllPaymentOption.nib
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file modified
BIN
+2 Bytes
(100%)
CoreSDK/PayUMoneyCoreSDK.framework/PUCBPassowrdWithIncorrectOTPView.nib
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file modified
BIN
-1 Byte
(100%)
CoreSDK/PayUMoneyCoreSDK.framework/PUCBRegenerateOTPView.nib
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
37 changes: 37 additions & 0 deletions
37
CoreSDK/PayUMoneyCoreSDK.framework/PrivateHeaders/PUCBReviewOrderConfig.h
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
// | ||
// PUCBReviewOrderConfig.h | ||
// PayUNonSeamlessTestApp | ||
// | ||
// Created by Umang Arya on 11/18/16. | ||
// Copyright © 2016 PayU. All rights reserved. | ||
// | ||
|
||
#import <UIKit/UIKit.h> | ||
#import "CBConstant.h" | ||
|
||
@interface PUCBReviewOrderConfig : NSObject | ||
|
||
|
||
NS_ENUM(NSInteger) | ||
{ | ||
PUCBROArrForReviewOrderUndefined = 101, | ||
PUCBROCustomReviewOrderUndefined = 102 | ||
}; | ||
|
||
-(instancetype) init ATTRIBUTE_INIT; | ||
+(instancetype) new ATTRIBUTE_NEW; | ||
|
||
@property (nonatomic,readonly) NSArray <NSDictionary*> *arrForReviewOrder; | ||
@property (nonatomic, readonly) UIView *vwCustomReviewOrder; | ||
|
||
@property (nonatomic, strong) NSString *btnText; | ||
@property (nonatomic, strong) UIColor *btnBGColor; | ||
@property (nonatomic, strong) UIColor *btnTxtColor; | ||
|
||
@property (nonatomic, strong) NSString *ReviewOrderHeaderForDefaultView; | ||
-(instancetype)initWithArrForReviewOrder:( NSArray *) arrForReviewOrder | ||
error:(NSError **) error; | ||
|
||
-(instancetype)initWithCustomView:(UIView *) vwCustomReviewOrder | ||
error:(NSError **) error; | ||
@end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,14 +9,14 @@ | |
Pod::Spec.new do |s| | ||
|
||
s.name = "PayUmoney_CoreSDK" | ||
s.version = "3.2" | ||
s.version = "3.3" | ||
s.summary = "PayUmoney iOS SDK" | ||
s.description = "This is a native SDK to integrate PayUmoney services with iOS apps" | ||
|
||
s.homepage = "https://github.com/payu-intrepos/PayUMoney-IOS-SDK" | ||
s.license = { :type => "MIT", :file => "LICENSE" } | ||
s.author = { "Umang Arya" => "[email protected]" } | ||
s.source = { :git => "https://github.com/payu-intrepos/PayUMoney-IOS-SDK.git", :tag => "PayUmoney_CoreSDK.3.2" } | ||
s.source = { :git => "https://github.com/payu-intrepos/PayUMoney-IOS-SDK.git", :tag => "PayUmoney_CoreSDK.3.3" } | ||
|
||
s.ios.deployment_target = '8.0' | ||
s.requires_arc = true | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,14 +9,14 @@ | |
Pod::Spec.new do |s| | ||
|
||
s.name = "PayUmoney_PnP" | ||
s.version = "2.2" | ||
s.version = "2.3" | ||
s.summary = "Native iOS integration & easy to integrate and use library." | ||
s.description = "Provides a ready to use, drop in set of User Screens to enable payments with iOS Apps. Provide an end to end payment experience with all the features offered by the Citrus SDK. Reduces integration friction as merchants do not have to worry about designing the checkout screen, bank assets, or deal with complexity required to handle different payments methods." | ||
|
||
s.homepage = "https://github.com/payu-intrepos/PayUMoney-IOS-SDK" | ||
s.license = { :type => "MIT", :file => "LICENSE" } | ||
s.author = { "Umang Arya" => "[email protected]" } | ||
s.source = { :git => "https://github.com/payu-intrepos/PayUMoney-IOS-SDK.git", :tag => "PayUmoney_PnP.2.2" } | ||
s.source = { :git => "https://github.com/payu-intrepos/PayUMoney-IOS-SDK.git", :tag => "PayUmoney_PnP.2.3" } | ||
|
||
s.ios.deployment_target = '8.0' | ||
s.requires_arc = true | ||
|
Binary file not shown.
Oops, something went wrong.