/** * Fabric API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * 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 ResourceIconOneOf1 */ export interface ResourceIconOneOf1 { /** * * @type {string} * @memberof ResourceIconOneOf1 */ 'type': ResourceIconOneOf1TypeEnum; /** * * @type {string} * @memberof ResourceIconOneOf1 */ 'predefined': string; } /** * @export */ export declare const ResourceIconOneOf1TypeEnum: { readonly Predefined: "predefined"; }; export type ResourceIconOneOf1TypeEnum = typeof ResourceIconOneOf1TypeEnum[keyof typeof ResourceIconOneOf1TypeEnum]; /** * Check if a given object implements the ResourceIconOneOf1 interface. */ export declare function instanceOfResourceIconOneOf1(value: object): value is ResourceIconOneOf1; export declare function ResourceIconOneOf1FromJSON(json: any): ResourceIconOneOf1; export declare function ResourceIconOneOf1FromJSONTyped(json: any, ignoreDiscriminator: boolean): ResourceIconOneOf1; export declare function ResourceIconOneOf1ToJSON(json: any): ResourceIconOneOf1; export declare function ResourceIconOneOf1ToJSONTyped(value?: ResourceIconOneOf1 | null, ignoreDiscriminator?: boolean): any;