UNIVPLMDataIntegration/Web/src/api-services/models/wechat-pay-transaction-input.ts

79 lines
1.9 KiB
TypeScript
Raw Normal View History

2024-06-15 13:02:35 +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.
*/
/**
*
*
* @export
* @interface WechatPayTransactionInput
*/
export interface WechatPayTransactionInput {
/**
* OpenId
*
* @type {string}
* @memberof WechatPayTransactionInput
*/
openId?: string | null;
/**
*
*
* @type {number}
* @memberof WechatPayTransactionInput
*/
total?: number;
/**
*
*
* @type {string}
* @memberof WechatPayTransactionInput
*/
description?: string | null;
/**
*
*
* @type {string}
* @memberof WechatPayTransactionInput
*/
attachment?: string | null;
/**
*
*
* @type {string}
* @memberof WechatPayTransactionInput
*/
goodsTag?: string | null;
2024-07-12 01:17:06 +08:00
/**
*
*
* @type {string}
2024-07-12 01:17:06 +08:00
* @memberof WechatPayTransactionInput
*/
orderId?: string | null;
2024-07-12 01:17:06 +08:00
/**
* ()
*
* @type {string}
2024-07-12 01:17:06 +08:00
* @memberof WechatPayTransactionInput
*/
orderStatus?: string | null;
2024-06-15 13:02:35 +08:00
}