- 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
36 lines
1.0 KiB
TypeScript
36 lines
1.0 KiB
TypeScript
/* tslint:disable */
|
|
/* eslint-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 KamiApiCardInfoAppleV1RechargeStealSettingReq
|
|
*/
|
|
export interface KamiApiCardInfoAppleV1RechargeStealSettingReq {
|
|
/**
|
|
* 状态
|
|
* @type {number}
|
|
* @memberof KamiApiCardInfoAppleV1RechargeStealSettingReq
|
|
*/
|
|
stealStatus: KamiApiCardInfoAppleV1RechargeStealSettingReqStealStatusEnum;
|
|
}
|
|
|
|
export const KamiApiCardInfoAppleV1RechargeStealSettingReqStealStatusEnum = {
|
|
NUMBER_0: 0,
|
|
NUMBER_1: 1
|
|
} as const;
|
|
|
|
export type KamiApiCardInfoAppleV1RechargeStealSettingReqStealStatusEnum =
|
|
(typeof KamiApiCardInfoAppleV1RechargeStealSettingReqStealStatusEnum)[keyof typeof KamiApiCardInfoAppleV1RechargeStealSettingReqStealStatusEnum];
|