UNPKG

flowus-api-sdk

Version:

Official TypeScript/JavaScript SDK for FlowUs API - Create, manage, and interact with FlowUs pages, databases, and blocks

59 lines (58 loc) 1.77 kB
/** * FlowUs API * FlowUs Developer API * * The version of the OpenAPI document: 1.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ import type { V1SearchPageResult } from './V1SearchPageResult'; /** * * @export * @interface V1SearchResponse */ export interface V1SearchResponse { /** * * @type {string} * @memberof V1SearchResponse */ object?: V1SearchResponseObjectEnum; /** * 搜索结果页面数组 * @type {Array<V1SearchPageResult>} * @memberof V1SearchResponse */ results?: Array<V1SearchPageResult>; /** * 下一页游标,为 null 表示没有更多结果 * @type {string} * @memberof V1SearchResponse */ next_cursor?: string; /** * 是否还有更多结果 * @type {boolean} * @memberof V1SearchResponse */ has_more?: boolean; } /** * @export */ export declare const V1SearchResponseObjectEnum: { readonly List: "list"; }; export type V1SearchResponseObjectEnum = typeof V1SearchResponseObjectEnum[keyof typeof V1SearchResponseObjectEnum]; /** * Check if a given object implements the V1SearchResponse interface. */ export declare function instanceOfV1SearchResponse(value: object): value is V1SearchResponse; export declare function V1SearchResponseFromJSON(json: any): V1SearchResponse; export declare function V1SearchResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): V1SearchResponse; export declare function V1SearchResponseToJSON(json: any): V1SearchResponse; export declare function V1SearchResponseToJSONTyped(value?: V1SearchResponse | null, ignoreDiscriminator?: boolean): any;