flowus-api-sdk
Version:
Official TypeScript/JavaScript SDK for FlowUs API - Create, manage, and interact with FlowUs pages, databases, and blocks
57 lines (56 loc) • 1.62 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 { Cover } from './Cover';
import type { Parent } from './Parent';
import type { Icon } from './Icon';
import type { CreatePagePropertyValue } from './CreatePagePropertyValue';
/**
*
* @export
* @interface CreatePageRequest
*/
export interface CreatePageRequest {
/**
*
* @type {Parent}
* @memberof CreatePageRequest
*/
parent?: Parent;
/**
*
* @type {Icon}
* @memberof CreatePageRequest
*/
icon?: Icon;
/**
*
* @type {Cover}
* @memberof CreatePageRequest
*/
cover?: Cover;
/**
* 页面属性
* @type {{ [key: string]: CreatePagePropertyValue; }}
* @memberof CreatePageRequest
*/
properties: {
[key: string]: CreatePagePropertyValue;
};
}
/**
* Check if a given object implements the CreatePageRequest interface.
*/
export declare function instanceOfCreatePageRequest(value: object): value is CreatePageRequest;
export declare function CreatePageRequestFromJSON(json: any): CreatePageRequest;
export declare function CreatePageRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): CreatePageRequest;
export declare function CreatePageRequestToJSON(json: any): CreatePageRequest;
export declare function CreatePageRequestToJSONTyped(value?: CreatePageRequest | null, ignoreDiscriminator?: boolean): any;