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.63 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 CreatePageResponseParentOneOf1
*/
export interface CreatePageResponseParentOneOf1 {
/**
*
* @type {string}
* @memberof CreatePageResponseParentOneOf1
*/
type: CreatePageResponseParentOneOf1TypeEnum;
/**
*
* @type {string}
* @memberof CreatePageResponseParentOneOf1
*/
page_id: string;
}
/**
* @export
*/
export declare const CreatePageResponseParentOneOf1TypeEnum: {
readonly PageId: "page_id";
};
export type CreatePageResponseParentOneOf1TypeEnum = typeof CreatePageResponseParentOneOf1TypeEnum[keyof typeof CreatePageResponseParentOneOf1TypeEnum];
/**
* Check if a given object implements the CreatePageResponseParentOneOf1 interface.
*/
export declare function instanceOfCreatePageResponseParentOneOf1(value: object): value is CreatePageResponseParentOneOf1;
export declare function CreatePageResponseParentOneOf1FromJSON(json: any): CreatePageResponseParentOneOf1;
export declare function CreatePageResponseParentOneOf1FromJSONTyped(json: any, ignoreDiscriminator: boolean): CreatePageResponseParentOneOf1;
export declare function CreatePageResponseParentOneOf1ToJSON(json: any): CreatePageResponseParentOneOf1;
export declare function CreatePageResponseParentOneOf1ToJSONTyped(value?: CreatePageResponseParentOneOf1 | null, ignoreDiscriminator?: boolean): any;