flowus-api-sdk
Version:
Official TypeScript/JavaScript SDK for FlowUs API - Create, manage, and interact with FlowUs pages, databases, and blocks
33 lines (32 loc) • 1.43 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 CreatePagePropertyValueFilesFilesInnerExternal
*/
export interface CreatePagePropertyValueFilesFilesInnerExternal {
/**
*
* @type {string}
* @memberof CreatePagePropertyValueFilesFilesInnerExternal
*/
url: string;
}
/**
* Check if a given object implements the CreatePagePropertyValueFilesFilesInnerExternal interface.
*/
export declare function instanceOfCreatePagePropertyValueFilesFilesInnerExternal(value: object): value is CreatePagePropertyValueFilesFilesInnerExternal;
export declare function CreatePagePropertyValueFilesFilesInnerExternalFromJSON(json: any): CreatePagePropertyValueFilesFilesInnerExternal;
export declare function CreatePagePropertyValueFilesFilesInnerExternalFromJSONTyped(json: any, ignoreDiscriminator: boolean): CreatePagePropertyValueFilesFilesInnerExternal;
export declare function CreatePagePropertyValueFilesFilesInnerExternalToJSON(json: any): CreatePagePropertyValueFilesFilesInnerExternal;
export declare function CreatePagePropertyValueFilesFilesInnerExternalToJSONTyped(value?: CreatePagePropertyValueFilesFilesInnerExternal | null, ignoreDiscriminator?: boolean): any;