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.34 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 PropertyValueDateDate
*/
export interface PropertyValueDateDate {
/**
* 开始日期
* @type {string}
* @memberof PropertyValueDateDate
*/
start?: string;
/**
* 结束日期(可选)
* @type {string}
* @memberof PropertyValueDateDate
*/
end?: string;
/**
* 时区
* @type {string}
* @memberof PropertyValueDateDate
*/
time_zone?: string;
}
/**
* Check if a given object implements the PropertyValueDateDate interface.
*/
export declare function instanceOfPropertyValueDateDate(value: object): value is PropertyValueDateDate;
export declare function PropertyValueDateDateFromJSON(json: any): PropertyValueDateDate;
export declare function PropertyValueDateDateFromJSONTyped(json: any, ignoreDiscriminator: boolean): PropertyValueDateDate;
export declare function PropertyValueDateDateToJSON(json: any): PropertyValueDateDate;
export declare function PropertyValueDateDateToJSONTyped(value?: PropertyValueDateDate | null, ignoreDiscriminator?: boolean): any;