flowus-api-sdk
Version:
Official TypeScript/JavaScript SDK for FlowUs API - Create, manage, and interact with FlowUs pages, databases, and blocks
52 lines (51 loc) • 1.52 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 DeleteBlockResponse
*/
export interface DeleteBlockResponse {
/**
*
* @type {string}
* @memberof DeleteBlockResponse
*/
object?: DeleteBlockResponseObjectEnum;
/**
*
* @type {string}
* @memberof DeleteBlockResponse
*/
id?: string;
/**
*
* @type {boolean}
* @memberof DeleteBlockResponse
*/
deleted?: boolean;
}
/**
* @export
*/
export declare const DeleteBlockResponseObjectEnum: {
readonly Block: "block";
};
export type DeleteBlockResponseObjectEnum = typeof DeleteBlockResponseObjectEnum[keyof typeof DeleteBlockResponseObjectEnum];
/**
* Check if a given object implements the DeleteBlockResponse interface.
*/
export declare function instanceOfDeleteBlockResponse(value: object): value is DeleteBlockResponse;
export declare function DeleteBlockResponseFromJSON(json: any): DeleteBlockResponse;
export declare function DeleteBlockResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): DeleteBlockResponse;
export declare function DeleteBlockResponseToJSON(json: any): DeleteBlockResponse;
export declare function DeleteBlockResponseToJSONTyped(value?: DeleteBlockResponse | null, ignoreDiscriminator?: boolean): any;