-
Notifications
You must be signed in to change notification settings - Fork 33
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #600 from veritrans/develop
Release 1.26.0
- Loading branch information
Showing
25 changed files
with
232 additions
and
13 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
// | ||
// MidtransPaymentKredivo.h | ||
// MidtransCoreKit | ||
// | ||
// Created by Muhammad Masykur on 14/05/24. | ||
// Copyright © 2024 Midtrans. All rights reserved. | ||
// | ||
|
||
#import <Foundation/Foundation.h> | ||
#import "MidtransPaymentDetails.h" | ||
|
||
NS_ASSUME_NONNULL_BEGIN | ||
|
||
@interface MidtransPaymentKredivo : NSObject <MidtransPaymentDetails> | ||
|
||
@end | ||
|
||
NS_ASSUME_NONNULL_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 |
---|---|---|
@@ -0,0 +1,19 @@ | ||
// | ||
// MidtransPaymentKredivo.m | ||
// MidtransCoreKit | ||
// | ||
// Created by Muhammad Masykur on 14/05/24. | ||
// Copyright © 2024 Midtrans. All rights reserved. | ||
// | ||
|
||
#import "MidtransPaymentKredivo.h" | ||
#import "MidtransHelper.h" | ||
#import "MidtransConstant.h" | ||
|
||
@implementation MidtransPaymentKredivo | ||
|
||
- (NSDictionary *)dictionaryValue { | ||
return @{@"payment_type":MIDTRANS_PAYMENT_KREDIVO}; | ||
} | ||
|
||
@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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -86,5 +86,9 @@ | |
{ | ||
"type": "akulaku", | ||
"name": "Akulaku PayLater" | ||
}, | ||
{ | ||
"type": "kredivo", | ||
"name": "Kredivo" | ||
} | ||
] |
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
Oops, something went wrong.