UNIVPLMDataIntegration/Web/src/api-services/models/alipay-trade-page-pay-input.ts

98 lines
2.3 KiB
TypeScript
Raw Normal View History

2024-12-29 23:53:58 +08:00
/* tslint:disable */
/* eslint-disable */
/**
* Admin.NET
* .NET <br/><u><b><font color='FF0000'> 👮</font></b></u>
*
* OpenAPI spec version: 1.0.0
*
*
* NOTE: This class is auto generated by the swagger code generator program.
* https://github.com/swagger-api/swagger-codegen.git
* Do not edit the class manually.
*/
import { ExtUserInfo } from './ext-user-info';
import { ExtendParams } from './extend-params';
import { InvoiceInfo } from './invoice-info';
/**
*
*
* @export
* @interface AlipayTradePagePayInput
*/
export interface AlipayTradePagePayInput {
/**
*
*
* @type {string}
* @memberof AlipayTradePagePayInput
*/
outTradeNo: string;
/**
*
*
* @type {string}
* @memberof AlipayTradePagePayInput
*/
totalAmount: string;
/**
*
*
* @type {string}
* @memberof AlipayTradePagePayInput
*/
subject: string;
/**
* @type {string}
* @memberof AlipayTradePagePayInput
*/
body?: string | null;
/**
*
*
* @type {string}
* @memberof AlipayTradePagePayInput
*/
timeoutExpress?: string | null;
/**
*
*
* @type {number}
* @memberof AlipayTradePagePayInput
*/
qrcodeWidth: number;
/**
* @type {ExtendParams}
* @memberof AlipayTradePagePayInput
*/
extendParams?: ExtendParams;
/**
*
*
* @type {{ [key: string]: any; }}
* @memberof AlipayTradePagePayInput
*/
businessParams?: { [key: string]: any; } | null;
/**
* @type {InvoiceInfo}
* @memberof AlipayTradePagePayInput
*/
invoiceInfo?: InvoiceInfo;
/**
* @type {ExtUserInfo}
* @memberof AlipayTradePagePayInput
*/
extUserInfo?: ExtUserInfo;
}