flowus-api-sdk
Version:
Official TypeScript/JavaScript SDK for FlowUs API - Create, manage, and interact with FlowUs pages, databases, and blocks
46 lines (45 loc) • 1.27 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.
*/
/**
*
* @export
* @interface ParentPageId
*/
export interface ParentPageId {
/**
*
* @type {string}
* @memberof ParentPageId
*/
type: ParentPageIdTypeEnum;
/**
*
* @type {string}
* @memberof ParentPageId
*/
page_id: string;
}
/**
* @export
*/
export declare const ParentPageIdTypeEnum: {
readonly PageId: "page_id";
};
export type ParentPageIdTypeEnum = typeof ParentPageIdTypeEnum[keyof typeof ParentPageIdTypeEnum];
/**
* Check if a given object implements the ParentPageId interface.
*/
export declare function instanceOfParentPageId(value: object): value is ParentPageId;
export declare function ParentPageIdFromJSON(json: any): ParentPageId;
export declare function ParentPageIdFromJSONTyped(json: any, ignoreDiscriminator: boolean): ParentPageId;
export declare function ParentPageIdToJSON(json: any): ParentPageId;
export declare function ParentPageIdToJSONTyped(value?: ParentPageId | null, ignoreDiscriminator?: boolean): any;