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.83 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 CreatePagePropertyValuePeoplePeopleInner
*/
export interface CreatePagePropertyValuePeoplePeopleInner {
/**
*
* @type {string}
* @memberof CreatePagePropertyValuePeoplePeopleInner
*/
object?: CreatePagePropertyValuePeoplePeopleInnerObjectEnum;
/**
*
* @type {string}
* @memberof CreatePagePropertyValuePeoplePeopleInner
*/
id: string;
}
/**
* @export
*/
export declare const CreatePagePropertyValuePeoplePeopleInnerObjectEnum: {
readonly User: "user";
};
export type CreatePagePropertyValuePeoplePeopleInnerObjectEnum = typeof CreatePagePropertyValuePeoplePeopleInnerObjectEnum[keyof typeof CreatePagePropertyValuePeoplePeopleInnerObjectEnum];
/**
* Check if a given object implements the CreatePagePropertyValuePeoplePeopleInner interface.
*/
export declare function instanceOfCreatePagePropertyValuePeoplePeopleInner(value: object): value is CreatePagePropertyValuePeoplePeopleInner;
export declare function CreatePagePropertyValuePeoplePeopleInnerFromJSON(json: any): CreatePagePropertyValuePeoplePeopleInner;
export declare function CreatePagePropertyValuePeoplePeopleInnerFromJSONTyped(json: any, ignoreDiscriminator: boolean): CreatePagePropertyValuePeoplePeopleInner;
export declare function CreatePagePropertyValuePeoplePeopleInnerToJSON(json: any): CreatePagePropertyValuePeoplePeopleInner;
export declare function CreatePagePropertyValuePeoplePeopleInnerToJSONTyped(value?: CreatePagePropertyValuePeoplePeopleInner | null, ignoreDiscriminator?: boolean): any;