flowus-api-sdk
Version:
Official TypeScript/JavaScript SDK for FlowUs API - Create, manage, and interact with FlowUs pages, databases, and blocks
47 lines (46 loc) • 1.36 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 { IconExternalDetail } from './IconExternalDetail';
/**
*
* @export
* @interface IconExternal
*/
export interface IconExternal {
/**
*
* @type {string}
* @memberof IconExternal
*/
type: IconExternalTypeEnum;
/**
*
* @type {IconExternalDetail}
* @memberof IconExternal
*/
external: IconExternalDetail;
}
/**
* @export
*/
export declare const IconExternalTypeEnum: {
readonly External: "external";
};
export type IconExternalTypeEnum = typeof IconExternalTypeEnum[keyof typeof IconExternalTypeEnum];
/**
* Check if a given object implements the IconExternal interface.
*/
export declare function instanceOfIconExternal(value: object): value is IconExternal;
export declare function IconExternalFromJSON(json: any): IconExternal;
export declare function IconExternalFromJSONTyped(json: any, ignoreDiscriminator: boolean): IconExternal;
export declare function IconExternalToJSON(json: any): IconExternal;
export declare function IconExternalToJSONTyped(value?: IconExternal | null, ignoreDiscriminator?: boolean): any;