UNPKG

flowus-api-sdk

Version:

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

56 lines (55 loc) 1.53 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 { Cover } from './Cover'; import type { PropertyValue } from './PropertyValue'; import type { Icon } from './Icon'; /** * * @export * @interface UpdatePageRequest */ export interface UpdatePageRequest { /** * * @type {{ [key: string]: PropertyValue; }} * @memberof UpdatePageRequest */ properties?: { [key: string]: PropertyValue; }; /** * * @type {Icon} * @memberof UpdatePageRequest */ icon?: Icon; /** * * @type {Cover} * @memberof UpdatePageRequest */ cover?: Cover; /** * * @type {boolean} * @memberof UpdatePageRequest */ archived?: boolean; } /** * Check if a given object implements the UpdatePageRequest interface. */ export declare function instanceOfUpdatePageRequest(value: object): value is UpdatePageRequest; export declare function UpdatePageRequestFromJSON(json: any): UpdatePageRequest; export declare function UpdatePageRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): UpdatePageRequest; export declare function UpdatePageRequestToJSON(json: any): UpdatePageRequest; export declare function UpdatePageRequestToJSONTyped(value?: UpdatePageRequest | null, ignoreDiscriminator?: boolean): any;