32 lines
890 B
TypeScript
32 lines
890 B
TypeScript
/* 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;
|