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.35 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 PropertyValueSelectSelect
*/
export interface PropertyValueSelectSelect {
/**
*
* @type {string}
* @memberof PropertyValueSelectSelect
*/
id?: string;
/**
*
* @type {string}
* @memberof PropertyValueSelectSelect
*/
name?: string;
/**
*
* @type {string}
* @memberof PropertyValueSelectSelect
*/
color?: string;
}
/**
* Check if a given object implements the PropertyValueSelectSelect interface.
*/
export declare function instanceOfPropertyValueSelectSelect(value: object): value is PropertyValueSelectSelect;
export declare function PropertyValueSelectSelectFromJSON(json: any): PropertyValueSelectSelect;
export declare function PropertyValueSelectSelectFromJSONTyped(json: any, ignoreDiscriminator: boolean): PropertyValueSelectSelect;
export declare function PropertyValueSelectSelectToJSON(json: any): PropertyValueSelectSelect;
export declare function PropertyValueSelectSelectToJSONTyped(value?: PropertyValueSelectSelect | null, ignoreDiscriminator?: boolean): any;