52 lines
1.2 KiB
TypeScript
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 KamiApiCardInfoWalmartV1GroupListReq
|
|
*/
|
|
export interface KamiApiCardInfoWalmartV1GroupListReq {
|
|
/**
|
|
* 页数
|
|
* @type {number}
|
|
* @memberof KamiApiCardInfoWalmartV1GroupListReq
|
|
*/
|
|
current: number;
|
|
/**
|
|
* 页码
|
|
* @type {number}
|
|
* @memberof KamiApiCardInfoWalmartV1GroupListReq
|
|
*/
|
|
pageSize: KamiApiCardInfoWalmartV1GroupListReqPageSizeEnum;
|
|
/**
|
|
* 用户ID
|
|
* @type {string}
|
|
* @memberof KamiApiCardInfoWalmartV1GroupListReq
|
|
*/
|
|
userId?: string;
|
|
}
|
|
|
|
export const KamiApiCardInfoWalmartV1GroupListReqPageSizeEnum = {
|
|
NUMBER_5: 5,
|
|
NUMBER_10: 10,
|
|
NUMBER_15: 15,
|
|
NUMBER_20: 20,
|
|
NUMBER_50: 50,
|
|
NUMBER_100: 100
|
|
} as const;
|
|
|
|
export type KamiApiCardInfoWalmartV1GroupListReqPageSizeEnum =
|
|
(typeof KamiApiCardInfoWalmartV1GroupListReqPageSizeEnum)[keyof typeof KamiApiCardInfoWalmartV1GroupListReqPageSizeEnum];
|