Files
kami_frontend/src/api/generated/models/kami-api-card-info-apple-v1-card-info-list-req.ts
2025-04-27 16:29:44 +08:00

52 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 KamiApiCardInfoAppleV1CardInfoListReq
*/
export interface KamiApiCardInfoAppleV1CardInfoListReq {
/**
* 账户
* @type {string}
* @memberof KamiApiCardInfoAppleV1CardInfoListReq
*/
account?: string;
/**
* 页数
* @type {number}
* @memberof KamiApiCardInfoAppleV1CardInfoListReq
*/
current: number;
/**
* 页码
* @type {number}
* @memberof KamiApiCardInfoAppleV1CardInfoListReq
*/
pageSize: KamiApiCardInfoAppleV1CardInfoListReqPageSizeEnum;
}
export const KamiApiCardInfoAppleV1CardInfoListReqPageSizeEnum = {
NUMBER_5: 5,
NUMBER_10: 10,
NUMBER_15: 15,
NUMBER_20: 20,
NUMBER_50: 50,
NUMBER_100: 100
} as const;
export type KamiApiCardInfoAppleV1CardInfoListReqPageSizeEnum =
(typeof KamiApiCardInfoAppleV1CardInfoListReqPageSizeEnum)[keyof typeof KamiApiCardInfoAppleV1CardInfoListReqPageSizeEnum];