flowus-api-sdk
Version:
Official TypeScript/JavaScript SDK for FlowUs API - Create, manage, and interact with FlowUs pages, databases, and blocks
78 lines (77 loc) • 2.25 kB
TypeScript
/**
* 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 { V1SearchPageResultProperties } from './V1SearchPageResultProperties';
import type { V1SearchPageResultParent } from './V1SearchPageResultParent';
/**
*
* @export
* @interface V1SearchPageResult
*/
export interface V1SearchPageResult {
/**
*
* @type {string}
* @memberof V1SearchPageResult
*/
object?: V1SearchPageResultObjectEnum;
/**
* 页面的唯一标识符
* @type {string}
* @memberof V1SearchPageResult
*/
id?: string;
/**
* 页面创建时间
* @type {Date}
* @memberof V1SearchPageResult
*/
created_time?: Date;
/**
* 页面最后编辑时间
* @type {Date}
* @memberof V1SearchPageResult
*/
last_edited_time?: Date;
/**
*
* @type {V1SearchPageResultParent}
* @memberof V1SearchPageResult
*/
parent?: V1SearchPageResultParent;
/**
* 页面是否已归档
* @type {boolean}
* @memberof V1SearchPageResult
*/
archived?: boolean;
/**
*
* @type {V1SearchPageResultProperties}
* @memberof V1SearchPageResult
*/
properties?: V1SearchPageResultProperties;
}
/**
* @export
*/
export declare const V1SearchPageResultObjectEnum: {
readonly Page: "page";
};
export type V1SearchPageResultObjectEnum = typeof V1SearchPageResultObjectEnum[keyof typeof V1SearchPageResultObjectEnum];
/**
* Check if a given object implements the V1SearchPageResult interface.
*/
export declare function instanceOfV1SearchPageResult(value: object): value is V1SearchPageResult;
export declare function V1SearchPageResultFromJSON(json: any): V1SearchPageResult;
export declare function V1SearchPageResultFromJSONTyped(json: any, ignoreDiscriminator: boolean): V1SearchPageResult;
export declare function V1SearchPageResultToJSON(json: any): V1SearchPageResult;
export declare function V1SearchPageResultToJSONTyped(value?: V1SearchPageResult | null, ignoreDiscriminator?: boolean): any;