Files
kami_frontend/src/api/generated/models/kami-api-card-info-apple-v1-card-info-update-req.ts
danial 85a2da5e2f ci: set up continuous integration and delivery pipeline
- Add .drone.yml file to configure CI/CD pipeline
- Set up Docker build and push to private registry
- Add deployment configuration for development and production environments
- Include health check and environment variable support
2025-03-30 22:34:38 +08:00

58 lines
1.2 KiB
TypeScript

/* tslint:disable */
/**
*
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
*
* The version of the OpenAPI document:
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
/**
*
* @export
* @interface KamiApiCardInfoAppleV1CardInfoUpdateReq
*/
export interface KamiApiCardInfoAppleV1CardInfoUpdateReq {
/**
*
* @type {string}
* @memberof KamiApiCardInfoAppleV1CardInfoUpdateReq
*/
id: string;
/**
* 账户
* @type {string}
* @memberof KamiApiCardInfoAppleV1CardInfoUpdateReq
*/
account: string;
/**
* 密码
* @type {string}
* @memberof KamiApiCardInfoAppleV1CardInfoUpdateReq
*/
password: string;
/**
* 最大充值金额
* @type {number}
* @memberof KamiApiCardInfoAppleV1CardInfoUpdateReq
*/
maxAmountLimit: number;
/**
* 最大充值次数
* @type {number}
* @memberof KamiApiCardInfoAppleV1CardInfoUpdateReq
*/
maxCountLimit: number;
/**
* 备注
* @type {string}
* @memberof KamiApiCardInfoAppleV1CardInfoUpdateReq
*/
remark?: string;
}