mirror of
https://github.com/34892002/edgeKey.git
synced 2026-05-22 07:05:39 +08:00
24 lines
510 B
TypeScript
24 lines
510 B
TypeScript
export type PaymentProvider = "BEPUSDT" | "EPAY" | "ALIPAY";
|
|
|
|
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;
|
|
} |