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.32 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 { PropertyValueDateDate } from './PropertyValueDateDate';
/**
*
* @export
* @interface PropertyValueDate
*/
export interface PropertyValueDate {
/**
*
* @type {string}
* @memberof PropertyValueDate
*/
id?: string;
/**
*
* @type {any}
* @memberof PropertyValueDate
*/
type: any | null;
/**
*
* @type {PropertyValueDateDate}
* @memberof PropertyValueDate
*/
date: PropertyValueDateDate;
}
/**
* Check if a given object implements the PropertyValueDate interface.
*/
export declare function instanceOfPropertyValueDate(value: object): value is PropertyValueDate;
export declare function PropertyValueDateFromJSON(json: any): PropertyValueDate;
export declare function PropertyValueDateFromJSONTyped(json: any, ignoreDiscriminator: boolean): PropertyValueDate;
export declare function PropertyValueDateToJSON(json: any): PropertyValueDate;
export declare function PropertyValueDateToJSONTyped(value?: PropertyValueDate | null, ignoreDiscriminator?: boolean): any;