Files
kami_frontend/src/api/generated/models/kami-api-card-info-jd-v1-jdaccount-list-req.ts
2025-04-27 14:11:08 +08:00

64 lines
1.5 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 KamiApiCardInfoJdV1JDAccountListReq
*/
export interface KamiApiCardInfoJdV1JDAccountListReq {
/**
* 页数
* @type {number}
* @memberof KamiApiCardInfoJdV1JDAccountListReq
*/
current: number;
/**
* 页码
* @type {number}
* @memberof KamiApiCardInfoJdV1JDAccountListReq
*/
pageSize: KamiApiCardInfoJdV1JDAccountListReqPageSizeEnum;
/**
* 账户名称
* @type {string}
* @memberof KamiApiCardInfoJdV1JDAccountListReq
*/
name?: string;
/**
* 用户昵称
* @type {string}
* @memberof KamiApiCardInfoJdV1JDAccountListReq
*/
nickName?: string;
/**
*
* @type {string}
* @memberof KamiApiCardInfoJdV1JDAccountListReq
*/
cookie?: string;
}
export const KamiApiCardInfoJdV1JDAccountListReqPageSizeEnum = {
NUMBER_5: 5,
NUMBER_10: 10,
NUMBER_15: 15,
NUMBER_20: 20,
NUMBER_50: 50,
NUMBER_100: 100
} as const;
export type KamiApiCardInfoJdV1JDAccountListReqPageSizeEnum =
(typeof KamiApiCardInfoJdV1JDAccountListReqPageSizeEnum)[keyof typeof KamiApiCardInfoJdV1JDAccountListReqPageSizeEnum];