mirror of
https://github.com/34892002/edgeKey.git
synced 2026-05-07 15:45:50 +08:00
27 lines
608 B
TypeScript
27 lines
608 B
TypeScript
export type PaymentProvider = "BEPUSDT" | "EPAY" | "ALIPAY" | "STRIPE";
|
|
|
|
export interface PaymentMethodItem {
|
|
provider: PaymentProvider;
|
|
label: string;
|
|
enabled: boolean;
|
|
baseUrl?: string;
|
|
}
|
|
|
|
export interface PaymentConfigValue {
|
|
provider: PaymentProvider;
|
|
name: string;
|
|
isEnabled: boolean;
|
|
baseUrl: string;
|
|
appId?: string;
|
|
appSecret?: string;
|
|
pid?: string;
|
|
key?: string;
|
|
notifyUrl?: string;
|
|
returnUrl?: string;
|
|
alipayAppId?: string;
|
|
alipayPrivateKey?: string;
|
|
alipayPublicKey?: string;
|
|
stripeSecretKey?: string;
|
|
stripeWebhookSecret?: string;
|
|
stripeCurrency?: string;
|
|
} |