-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
56633a2
commit bc853c1
Showing
24 changed files
with
432 additions
and
19 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
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
54 changes: 54 additions & 0 deletions
54
src/api/resources/consumerUsers/types/UserSavedPaymentDetailsItem.ts
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,54 @@ | ||
/** | ||
* This file was auto-generated by Fern from our API Definition. | ||
*/ | ||
|
||
import * as Flagright from "../../.."; | ||
|
||
export type UserSavedPaymentDetailsItem = | ||
| Flagright.UserSavedPaymentDetailsItem.Card | ||
| Flagright.UserSavedPaymentDetailsItem.GenericBankAccount | ||
| Flagright.UserSavedPaymentDetailsItem.Iban | ||
| Flagright.UserSavedPaymentDetailsItem.Ach | ||
| Flagright.UserSavedPaymentDetailsItem.Swift | ||
| Flagright.UserSavedPaymentDetailsItem.Mpesa | ||
| Flagright.UserSavedPaymentDetailsItem.Upi | ||
| Flagright.UserSavedPaymentDetailsItem.Wallet | ||
| Flagright.UserSavedPaymentDetailsItem.Check; | ||
|
||
export declare namespace UserSavedPaymentDetailsItem { | ||
interface Card extends Flagright.CardDetails { | ||
method: "CARD"; | ||
} | ||
|
||
interface GenericBankAccount extends Flagright.GenericBankAccountDetails { | ||
method: "GENERIC_BANK_ACCOUNT"; | ||
} | ||
|
||
interface Iban extends Flagright.IbanDetails { | ||
method: "IBAN"; | ||
} | ||
|
||
interface Ach extends Flagright.AchDetails { | ||
method: "ACH"; | ||
} | ||
|
||
interface Swift extends Flagright.SwiftDetails { | ||
method: "SWIFT"; | ||
} | ||
|
||
interface Mpesa extends Flagright.MpesaDetails { | ||
method: "MPESA"; | ||
} | ||
|
||
interface Upi extends Flagright.UpiDetails { | ||
method: "UPI"; | ||
} | ||
|
||
interface Wallet extends Flagright.WalletDetails { | ||
method: "WALLET"; | ||
} | ||
|
||
interface Check extends Flagright.CheckDetails { | ||
method: "CHECK"; | ||
} | ||
} |
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 |
---|---|---|
@@ -1 +1,2 @@ | ||
export * from "./UserSavedPaymentDetailsItem"; | ||
export * from "./ConsumerUsersCreateResponse"; |
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,54 @@ | ||
/** | ||
* This file was auto-generated by Fern from our API Definition. | ||
*/ | ||
|
||
import * as Flagright from ".."; | ||
|
||
export type UserOptionalSavedPaymentDetailsItem = | ||
| Flagright.UserOptionalSavedPaymentDetailsItem.Card | ||
| Flagright.UserOptionalSavedPaymentDetailsItem.GenericBankAccount | ||
| Flagright.UserOptionalSavedPaymentDetailsItem.Iban | ||
| Flagright.UserOptionalSavedPaymentDetailsItem.Ach | ||
| Flagright.UserOptionalSavedPaymentDetailsItem.Swift | ||
| Flagright.UserOptionalSavedPaymentDetailsItem.Mpesa | ||
| Flagright.UserOptionalSavedPaymentDetailsItem.Upi | ||
| Flagright.UserOptionalSavedPaymentDetailsItem.Wallet | ||
| Flagright.UserOptionalSavedPaymentDetailsItem.Check; | ||
|
||
export declare namespace UserOptionalSavedPaymentDetailsItem { | ||
interface Card extends Flagright.CardDetails { | ||
method: "CARD"; | ||
} | ||
|
||
interface GenericBankAccount extends Flagright.GenericBankAccountDetails { | ||
method: "GENERIC_BANK_ACCOUNT"; | ||
} | ||
|
||
interface Iban extends Flagright.IbanDetails { | ||
method: "IBAN"; | ||
} | ||
|
||
interface Ach extends Flagright.AchDetails { | ||
method: "ACH"; | ||
} | ||
|
||
interface Swift extends Flagright.SwiftDetails { | ||
method: "SWIFT"; | ||
} | ||
|
||
interface Mpesa extends Flagright.MpesaDetails { | ||
method: "MPESA"; | ||
} | ||
|
||
interface Upi extends Flagright.UpiDetails { | ||
method: "UPI"; | ||
} | ||
|
||
interface Wallet extends Flagright.WalletDetails { | ||
method: "WALLET"; | ||
} | ||
|
||
interface Check extends Flagright.CheckDetails { | ||
method: "CHECK"; | ||
} | ||
} |
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
54 changes: 54 additions & 0 deletions
54
src/api/types/UserWithRulesResultSavedPaymentDetailsItem.ts
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,54 @@ | ||
/** | ||
* This file was auto-generated by Fern from our API Definition. | ||
*/ | ||
|
||
import * as Flagright from ".."; | ||
|
||
export type UserWithRulesResultSavedPaymentDetailsItem = | ||
| Flagright.UserWithRulesResultSavedPaymentDetailsItem.Card | ||
| Flagright.UserWithRulesResultSavedPaymentDetailsItem.GenericBankAccount | ||
| Flagright.UserWithRulesResultSavedPaymentDetailsItem.Iban | ||
| Flagright.UserWithRulesResultSavedPaymentDetailsItem.Ach | ||
| Flagright.UserWithRulesResultSavedPaymentDetailsItem.Swift | ||
| Flagright.UserWithRulesResultSavedPaymentDetailsItem.Mpesa | ||
| Flagright.UserWithRulesResultSavedPaymentDetailsItem.Upi | ||
| Flagright.UserWithRulesResultSavedPaymentDetailsItem.Wallet | ||
| Flagright.UserWithRulesResultSavedPaymentDetailsItem.Check; | ||
|
||
export declare namespace UserWithRulesResultSavedPaymentDetailsItem { | ||
interface Card extends Flagright.CardDetails { | ||
method: "CARD"; | ||
} | ||
|
||
interface GenericBankAccount extends Flagright.GenericBankAccountDetails { | ||
method: "GENERIC_BANK_ACCOUNT"; | ||
} | ||
|
||
interface Iban extends Flagright.IbanDetails { | ||
method: "IBAN"; | ||
} | ||
|
||
interface Ach extends Flagright.AchDetails { | ||
method: "ACH"; | ||
} | ||
|
||
interface Swift extends Flagright.SwiftDetails { | ||
method: "SWIFT"; | ||
} | ||
|
||
interface Mpesa extends Flagright.MpesaDetails { | ||
method: "MPESA"; | ||
} | ||
|
||
interface Upi extends Flagright.UpiDetails { | ||
method: "UPI"; | ||
} | ||
|
||
interface Wallet extends Flagright.WalletDetails { | ||
method: "WALLET"; | ||
} | ||
|
||
interface Check extends Flagright.CheckDetails { | ||
method: "CHECK"; | ||
} | ||
} |
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
Oops, something went wrong.