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.59 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 PropertyValueMultiSelectMultiSelectInner
*/
export interface PropertyValueMultiSelectMultiSelectInner {
/**
*
* @type {string}
* @memberof PropertyValueMultiSelectMultiSelectInner
*/
id?: string;
/**
*
* @type {string}
* @memberof PropertyValueMultiSelectMultiSelectInner
*/
name?: string;
/**
*
* @type {string}
* @memberof PropertyValueMultiSelectMultiSelectInner
*/
color?: string;
}
/**
* Check if a given object implements the PropertyValueMultiSelectMultiSelectInner interface.
*/
export declare function instanceOfPropertyValueMultiSelectMultiSelectInner(value: object): value is PropertyValueMultiSelectMultiSelectInner;
export declare function PropertyValueMultiSelectMultiSelectInnerFromJSON(json: any): PropertyValueMultiSelectMultiSelectInner;
export declare function PropertyValueMultiSelectMultiSelectInnerFromJSONTyped(json: any, ignoreDiscriminator: boolean): PropertyValueMultiSelectMultiSelectInner;
export declare function PropertyValueMultiSelectMultiSelectInnerToJSON(json: any): PropertyValueMultiSelectMultiSelectInner;
export declare function PropertyValueMultiSelectMultiSelectInnerToJSONTyped(value?: PropertyValueMultiSelectMultiSelectInner | null, ignoreDiscriminator?: boolean): any;