UNPKG

umbraco-management-api-client

Version:

TypeScript client for the Umbraco Management API (auto-generated by OpenAPI Generator)

34 lines (33 loc) 1.38 kB
/** * Umbraco Management API * This shows all APIs available in this version of Umbraco - including all the legacy apis that are available for backward compatibility * * The version of the OpenAPI document: Latest * * * 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 { ReferenceByIdModel } from './ReferenceByIdModel'; /** * * @export * @interface ImportMediaTypeRequestModel */ export interface ImportMediaTypeRequestModel { /** * * @type {ReferenceByIdModel} * @memberof ImportMediaTypeRequestModel */ file: ReferenceByIdModel; } /** * Check if a given object implements the ImportMediaTypeRequestModel interface. */ export declare function instanceOfImportMediaTypeRequestModel(value: object): value is ImportMediaTypeRequestModel; export declare function ImportMediaTypeRequestModelFromJSON(json: any): ImportMediaTypeRequestModel; export declare function ImportMediaTypeRequestModelFromJSONTyped(json: any, ignoreDiscriminator: boolean): ImportMediaTypeRequestModel; export declare function ImportMediaTypeRequestModelToJSON(json: any): ImportMediaTypeRequestModel; export declare function ImportMediaTypeRequestModelToJSONTyped(value?: ImportMediaTypeRequestModel | null, ignoreDiscriminator?: boolean): any;