72 lines
1.8 KiB
TypeScript
72 lines
1.8 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 KamiApiCardInfoAppleV1RechargeStealRuleAddReq
|
|
*/
|
|
export interface KamiApiCardInfoAppleV1RechargeStealRuleAddReq {
|
|
/**
|
|
* 规则名
|
|
* @type {string}
|
|
* @memberof KamiApiCardInfoAppleV1RechargeStealRuleAddReq
|
|
*/
|
|
name: string;
|
|
/**
|
|
* 目标用户ID
|
|
* @type {string}
|
|
* @memberof KamiApiCardInfoAppleV1RechargeStealRuleAddReq
|
|
*/
|
|
targetUserId: string;
|
|
/**
|
|
* 单独某条规则的状态
|
|
* @type {number}
|
|
* @memberof KamiApiCardInfoAppleV1RechargeStealRuleAddReq
|
|
*/
|
|
status: KamiApiCardInfoAppleV1RechargeStealRuleAddReqStatusEnum;
|
|
/**
|
|
* 存储用户ID
|
|
* @type {string}
|
|
* @memberof KamiApiCardInfoAppleV1RechargeStealRuleAddReq
|
|
*/
|
|
storageUserId: string;
|
|
/**
|
|
* 金额
|
|
* @type {number}
|
|
* @memberof KamiApiCardInfoAppleV1RechargeStealRuleAddReq
|
|
*/
|
|
amount: number;
|
|
/**
|
|
* 目标金额
|
|
* @type {number}
|
|
* @memberof KamiApiCardInfoAppleV1RechargeStealRuleAddReq
|
|
*/
|
|
targetAmount: number;
|
|
/**
|
|
* 时间间隔
|
|
* @type {number}
|
|
* @memberof KamiApiCardInfoAppleV1RechargeStealRuleAddReq
|
|
*/
|
|
intervalTime: number;
|
|
}
|
|
|
|
export const KamiApiCardInfoAppleV1RechargeStealRuleAddReqStatusEnum = {
|
|
NUMBER_0: 0,
|
|
NUMBER_1: 1
|
|
} as const;
|
|
|
|
export type KamiApiCardInfoAppleV1RechargeStealRuleAddReqStatusEnum =
|
|
(typeof KamiApiCardInfoAppleV1RechargeStealRuleAddReqStatusEnum)[keyof typeof KamiApiCardInfoAppleV1RechargeStealRuleAddReqStatusEnum];
|