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.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.
*/
/**
*
* @export
* @interface CreatePageResponseParentOneOf
*/
export interface CreatePageResponseParentOneOf {
/**
*
* @type {string}
* @memberof CreatePageResponseParentOneOf
*/
type: CreatePageResponseParentOneOfTypeEnum;
/**
*
* @type {string}
* @memberof CreatePageResponseParentOneOf
*/
database_id: string;
}
/**
* @export
*/
export declare const CreatePageResponseParentOneOfTypeEnum: {
readonly DatabaseId: "database_id";
};
export type CreatePageResponseParentOneOfTypeEnum = typeof CreatePageResponseParentOneOfTypeEnum[keyof typeof CreatePageResponseParentOneOfTypeEnum];
/**
* Check if a given object implements the CreatePageResponseParentOneOf interface.
*/
export declare function instanceOfCreatePageResponseParentOneOf(value: object): value is CreatePageResponseParentOneOf;
export declare function CreatePageResponseParentOneOfFromJSON(json: any): CreatePageResponseParentOneOf;
export declare function CreatePageResponseParentOneOfFromJSONTyped(json: any, ignoreDiscriminator: boolean): CreatePageResponseParentOneOf;
export declare function CreatePageResponseParentOneOfToJSON(json: any): CreatePageResponseParentOneOf;
export declare function CreatePageResponseParentOneOfToJSONTyped(value?: CreatePageResponseParentOneOf | null, ignoreDiscriminator?: boolean): any;