- 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
57 lines
1.4 KiB
TypeScript
57 lines
1.4 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 KamiApiCardInfoAppleV1RechargeSubmitQueryRes
|
|
*/
|
|
export interface KamiApiCardInfoAppleV1RechargeSubmitQueryRes {
|
|
/**
|
|
* 充值返回编码
|
|
* @type {number}
|
|
* @memberof KamiApiCardInfoAppleV1RechargeSubmitQueryRes
|
|
*/
|
|
status?: KamiApiCardInfoAppleV1RechargeSubmitQueryResStatusEnum;
|
|
/**
|
|
* 详细描述信息
|
|
* @type {string}
|
|
* @memberof KamiApiCardInfoAppleV1RechargeSubmitQueryRes
|
|
*/
|
|
message?: string;
|
|
}
|
|
|
|
export const KamiApiCardInfoAppleV1RechargeSubmitQueryResStatusEnum = {
|
|
NUMBER_13: 13,
|
|
NUMBER_15: 15,
|
|
NUMBER_6: 6,
|
|
NUMBER_14: 14,
|
|
NUMBER_5: 5,
|
|
NUMBER_0: 0,
|
|
NUMBER_16: 16,
|
|
NUMBER_4: 4,
|
|
NUMBER_2: 2,
|
|
NUMBER_9: 9,
|
|
NUMBER_12: 12,
|
|
NUMBER_10: 10,
|
|
NUMBER_11: 11,
|
|
NUMBER_7: 7,
|
|
NUMBER_8: 8,
|
|
NUMBER_1: 1,
|
|
NUMBER_3: 3
|
|
} as const;
|
|
|
|
export type KamiApiCardInfoAppleV1RechargeSubmitQueryResStatusEnum =
|
|
(typeof KamiApiCardInfoAppleV1RechargeSubmitQueryResStatusEnum)[keyof typeof KamiApiCardInfoAppleV1RechargeSubmitQueryResStatusEnum];
|