UNPKG

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.41 kB
/** * 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 { PropertyValuePeoplePeopleInner } from './PropertyValuePeoplePeopleInner'; /** * * @export * @interface PropertyValuePeople */ export interface PropertyValuePeople { /** * * @type {string} * @memberof PropertyValuePeople */ id?: string; /** * * @type {any} * @memberof PropertyValuePeople */ type?: any | null; /** * * @type {Array<PropertyValuePeoplePeopleInner>} * @memberof PropertyValuePeople */ people?: Array<PropertyValuePeoplePeopleInner>; } /** * Check if a given object implements the PropertyValuePeople interface. */ export declare function instanceOfPropertyValuePeople(value: object): value is PropertyValuePeople; export declare function PropertyValuePeopleFromJSON(json: any): PropertyValuePeople; export declare function PropertyValuePeopleFromJSONTyped(json: any, ignoreDiscriminator: boolean): PropertyValuePeople; export declare function PropertyValuePeopleToJSON(json: any): PropertyValuePeople; export declare function PropertyValuePeopleToJSONTyped(value?: PropertyValuePeople | null, ignoreDiscriminator?: boolean): any;