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.58 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 CreatePageResponseUpdatedBy
*/
export interface CreatePageResponseUpdatedBy {
/**
*
* @type {string}
* @memberof CreatePageResponseUpdatedBy
*/
object?: CreatePageResponseUpdatedByObjectEnum;
/**
* 更新者ID
* @type {string}
* @memberof CreatePageResponseUpdatedBy
*/
id?: string;
}
/**
* @export
*/
export declare const CreatePageResponseUpdatedByObjectEnum: {
readonly User: "user";
};
export type CreatePageResponseUpdatedByObjectEnum = typeof CreatePageResponseUpdatedByObjectEnum[keyof typeof CreatePageResponseUpdatedByObjectEnum];
/**
* Check if a given object implements the CreatePageResponseUpdatedBy interface.
*/
export declare function instanceOfCreatePageResponseUpdatedBy(value: object): value is CreatePageResponseUpdatedBy;
export declare function CreatePageResponseUpdatedByFromJSON(json: any): CreatePageResponseUpdatedBy;
export declare function CreatePageResponseUpdatedByFromJSONTyped(json: any, ignoreDiscriminator: boolean): CreatePageResponseUpdatedBy;
export declare function CreatePageResponseUpdatedByToJSON(json: any): CreatePageResponseUpdatedBy;
export declare function CreatePageResponseUpdatedByToJSONTyped(value?: CreatePageResponseUpdatedBy | null, ignoreDiscriminator?: boolean): any;