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.51 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 CreatePagePropertyValueSelectSelect
*/
export interface CreatePagePropertyValueSelectSelect {
/**
*
* @type {string}
* @memberof CreatePagePropertyValueSelectSelect
*/
id?: string;
/**
*
* @type {string}
* @memberof CreatePagePropertyValueSelectSelect
*/
name: string;
/**
*
* @type {string}
* @memberof CreatePagePropertyValueSelectSelect
*/
color?: string;
}
/**
* Check if a given object implements the CreatePagePropertyValueSelectSelect interface.
*/
export declare function instanceOfCreatePagePropertyValueSelectSelect(value: object): value is CreatePagePropertyValueSelectSelect;
export declare function CreatePagePropertyValueSelectSelectFromJSON(json: any): CreatePagePropertyValueSelectSelect;
export declare function CreatePagePropertyValueSelectSelectFromJSONTyped(json: any, ignoreDiscriminator: boolean): CreatePagePropertyValueSelectSelect;
export declare function CreatePagePropertyValueSelectSelectToJSON(json: any): CreatePagePropertyValueSelectSelect;
export declare function CreatePagePropertyValueSelectSelectToJSONTyped(value?: CreatePagePropertyValueSelectSelect | null, ignoreDiscriminator?: boolean): any;