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.55 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.
*/
import type { CreatePagePropertyValueDateDate } from './CreatePagePropertyValueDateDate';
/**
*
* @export
* @interface CreatePagePropertyValueDate
*/
export interface CreatePagePropertyValueDate {
/**
* 属性ID(可选)
* @type {string}
* @memberof CreatePagePropertyValueDate
*/
id?: string;
/**
*
* @type {any}
* @memberof CreatePagePropertyValueDate
*/
type: any | null;
/**
*
* @type {CreatePagePropertyValueDateDate}
* @memberof CreatePagePropertyValueDate
*/
date: CreatePagePropertyValueDateDate;
}
/**
* Check if a given object implements the CreatePagePropertyValueDate interface.
*/
export declare function instanceOfCreatePagePropertyValueDate(value: object): value is CreatePagePropertyValueDate;
export declare function CreatePagePropertyValueDateFromJSON(json: any): CreatePagePropertyValueDate;
export declare function CreatePagePropertyValueDateFromJSONTyped(json: any, ignoreDiscriminator: boolean): CreatePagePropertyValueDate;
export declare function CreatePagePropertyValueDateToJSON(json: any): CreatePagePropertyValueDate;
export declare function CreatePagePropertyValueDateToJSONTyped(value?: CreatePagePropertyValueDate | null, ignoreDiscriminator?: boolean): any;