43 lines
1.2 KiB
TypeScript
43 lines
1.2 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 KamiApiCardInfoAppleV1RechargeStealRuleStatusUpdateReq
|
|
*/
|
|
export interface KamiApiCardInfoAppleV1RechargeStealRuleStatusUpdateReq {
|
|
/**
|
|
*
|
|
* @type {number}
|
|
* @memberof KamiApiCardInfoAppleV1RechargeStealRuleStatusUpdateReq
|
|
*/
|
|
id: number;
|
|
/**
|
|
* 状态
|
|
* @type {number}
|
|
* @memberof KamiApiCardInfoAppleV1RechargeStealRuleStatusUpdateReq
|
|
*/
|
|
status: KamiApiCardInfoAppleV1RechargeStealRuleStatusUpdateReqStatusEnum;
|
|
}
|
|
|
|
export const KamiApiCardInfoAppleV1RechargeStealRuleStatusUpdateReqStatusEnum =
|
|
{
|
|
NUMBER_0: 0,
|
|
NUMBER_1: 1
|
|
} as const;
|
|
|
|
export type KamiApiCardInfoAppleV1RechargeStealRuleStatusUpdateReqStatusEnum =
|
|
(typeof KamiApiCardInfoAppleV1RechargeStealRuleStatusUpdateReqStatusEnum)[keyof typeof KamiApiCardInfoAppleV1RechargeStealRuleStatusUpdateReqStatusEnum];
|