Files
glam-web/src/api/schemas/$VideoDataPaginationRequest.ts
2025-06-27 17:34:05 +08:00

32 lines
890 B
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
/* generated using openapi-typescript-codegen -- do no edit */
/* istanbul ignore file */
/* tslint:disable */
/* eslint-disable */
export const $VideoDataPaginationRequest = {
properties: {
page: {
type: 'number',
description: `页码从1开始`,
minimum: 1,
},
page_size: {
type: 'number',
description: `每页数量最大100`,
maximum: 100,
minimum: 1,
},
task_id: {
type: 'string',
description: `任务ID筛选可选`,
},
img_status: {
type: 'string',
description: `图片状态筛选(可选)`,
},
video_status: {
type: 'string',
description: `视频状态筛选(可选)`,
},
},
} as const;