支付协议修改

This commit is contained in:
chen wei bo
2025-09-18 16:19:45 +08:00
parent 3fd19e82d5
commit c0fc7c838a
3 changed files with 298 additions and 3 deletions
+62
View File
@@ -1660,11 +1660,31 @@ toJSON(): { [k: string]: any };
static getTypeUrl(typeUrlPrefix?: string): string;
}
/** EnmPayType enum. */
enum EnmPayType {
EPT_Cash_INR = 0,
EPT_WEB3_USD = 1
}
/** EnmNetworkType enum. */
enum EnmNetworkType {
ENT_TRON = 0,
ENT_TON = 1,
ENT_ETH = 2,
ENT_BEP = 3
}
/** Properties of a CSCreateOrderReq. */
interface ICSCreateOrderReq {
/** CSCreateOrderReq goodId */
goodId?: (number|null);
/** CSCreateOrderReq payType */
payType?: (number|null);
/** CSCreateOrderReq network */
network?: (number|null);
}
/** Represents a CSCreateOrderReq. */
@@ -1679,6 +1699,12 @@ static getTypeUrl(typeUrlPrefix?: string): string;
/** CSCreateOrderReq goodId. */
goodId: number;
/** CSCreateOrderReq payType. */
payType: number;
/** CSCreateOrderReq network. */
network: number;
/**
* Creates a new CSCreateOrderReq instance using the specified properties.
* @param [properties] Properties to set
@@ -1765,6 +1791,21 @@ static getTypeUrl(typeUrlPrefix?: string): string;
/** CSCreateOrderRes orderId */
orderId?: (string|null);
/** CSCreateOrderRes network */
network?: (number|null);
/** CSCreateOrderRes wallet */
wallet?: (string|null);
/** CSCreateOrderRes amount */
amount?: (string|null);
/** CSCreateOrderRes Expire */
Expire?: (number|null);
/** CSCreateOrderRes ExpireUnix */
ExpireUnix?: (number|Long|null);
}
/** Represents a CSCreateOrderRes. */
@@ -1782,6 +1823,21 @@ payUrl: string;
/** CSCreateOrderRes orderId. */
orderId: string;
/** CSCreateOrderRes network. */
network: number;
/** CSCreateOrderRes wallet. */
wallet: string;
/** CSCreateOrderRes amount. */
amount: string;
/** CSCreateOrderRes Expire. */
Expire: number;
/** CSCreateOrderRes ExpireUnix. */
ExpireUnix: (number|Long);
/**
* Creates a new CSCreateOrderRes instance using the specified properties.
* @param [properties] Properties to set
@@ -4129,6 +4185,9 @@ static getTypeUrl(typeUrlPrefix?: string): string;
/** PurchaseConfig price */
price?: (number|null);
/** PurchaseConfig usd */
usd?: (number|null);
}
/** Represents a PurchaseConfig. */
@@ -4152,6 +4211,9 @@ count: number;
/** PurchaseConfig price. */
price: number;
/** PurchaseConfig usd. */
usd: number;
/**
* Creates a new PurchaseConfig instance using the specified properties.
* @param [properties] Properties to set