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.48 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.
*/
import type { CreatePagePropertyValueFilesFilesInner } from './CreatePagePropertyValueFilesFilesInner';
/**
*
* @export
* @interface CreatePagePropertyValueFiles
*/
export interface CreatePagePropertyValueFiles {
/**
*
* @type {any}
* @memberof CreatePagePropertyValueFiles
*/
type: any | null;
/**
*
* @type {Array<CreatePagePropertyValueFilesFilesInner>}
* @memberof CreatePagePropertyValueFiles
*/
files: Array<CreatePagePropertyValueFilesFilesInner>;
}
/**
* Check if a given object implements the CreatePagePropertyValueFiles interface.
*/
export declare function instanceOfCreatePagePropertyValueFiles(value: object): value is CreatePagePropertyValueFiles;
export declare function CreatePagePropertyValueFilesFromJSON(json: any): CreatePagePropertyValueFiles;
export declare function CreatePagePropertyValueFilesFromJSONTyped(json: any, ignoreDiscriminator: boolean): CreatePagePropertyValueFiles;
export declare function CreatePagePropertyValueFilesToJSON(json: any): CreatePagePropertyValueFiles;
export declare function CreatePagePropertyValueFilesToJSONTyped(value?: CreatePagePropertyValueFiles | null, ignoreDiscriminator?: boolean): any;