flowus-api-sdk
Version:
Official TypeScript/JavaScript SDK for FlowUs API - Create, manage, and interact with FlowUs pages, databases, and blocks
45 lines (44 loc) • 1.54 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 CreatePagePropertyValueDateDate
*/
export interface CreatePagePropertyValueDateDate {
/**
* 开始日期(YYYY-MM-DD 或 YYYY-MM-DDTHH:MM格式)
* @type {string}
* @memberof CreatePagePropertyValueDateDate
*/
start: string;
/**
* 结束日期(可选)
* @type {string}
* @memberof CreatePagePropertyValueDateDate
*/
end?: string;
/**
* 时区
* @type {string}
* @memberof CreatePagePropertyValueDateDate
*/
time_zone?: string;
}
/**
* Check if a given object implements the CreatePagePropertyValueDateDate interface.
*/
export declare function instanceOfCreatePagePropertyValueDateDate(value: object): value is CreatePagePropertyValueDateDate;
export declare function CreatePagePropertyValueDateDateFromJSON(json: any): CreatePagePropertyValueDateDate;
export declare function CreatePagePropertyValueDateDateFromJSONTyped(json: any, ignoreDiscriminator: boolean): CreatePagePropertyValueDateDate;
export declare function CreatePagePropertyValueDateDateToJSON(json: any): CreatePagePropertyValueDateDate;
export declare function CreatePagePropertyValueDateDateToJSONTyped(value?: CreatePagePropertyValueDateDate | null, ignoreDiscriminator?: boolean): any;