UNPKG

flowus-api-sdk

Version:

Official TypeScript/JavaScript SDK for FlowUs API - Create, manage, and interact with FlowUs pages, databases, and blocks

40 lines (39 loc) 1.5 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 { CreatePagePropertyValuePeoplePeopleInner } from './CreatePagePropertyValuePeoplePeopleInner'; /** * * @export * @interface CreatePagePropertyValuePeople */ export interface CreatePagePropertyValuePeople { /** * * @type {any} * @memberof CreatePagePropertyValuePeople */ type: any | null; /** * * @type {Array<CreatePagePropertyValuePeoplePeopleInner>} * @memberof CreatePagePropertyValuePeople */ people: Array<CreatePagePropertyValuePeoplePeopleInner>; } /** * Check if a given object implements the CreatePagePropertyValuePeople interface. */ export declare function instanceOfCreatePagePropertyValuePeople(value: object): value is CreatePagePropertyValuePeople; export declare function CreatePagePropertyValuePeopleFromJSON(json: any): CreatePagePropertyValuePeople; export declare function CreatePagePropertyValuePeopleFromJSONTyped(json: any, ignoreDiscriminator: boolean): CreatePagePropertyValuePeople; export declare function CreatePagePropertyValuePeopleToJSON(json: any): CreatePagePropertyValuePeople; export declare function CreatePagePropertyValuePeopleToJSONTyped(value?: CreatePagePropertyValuePeople | null, ignoreDiscriminator?: boolean): any;