UNPKG

umbraco-management-api-client

Version:

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

34 lines (33 loc) 1.43 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 ImportDocumentTypeRequestModel */ export interface ImportDocumentTypeRequestModel { /** * * @type {ReferenceByIdModel} * @memberof ImportDocumentTypeRequestModel */ file: ReferenceByIdModel; } /** * Check if a given object implements the ImportDocumentTypeRequestModel interface. */ export declare function instanceOfImportDocumentTypeRequestModel(value: object): value is ImportDocumentTypeRequestModel; export declare function ImportDocumentTypeRequestModelFromJSON(json: any): ImportDocumentTypeRequestModel; export declare function ImportDocumentTypeRequestModelFromJSONTyped(json: any, ignoreDiscriminator: boolean): ImportDocumentTypeRequestModel; export declare function ImportDocumentTypeRequestModelToJSON(json: any): ImportDocumentTypeRequestModel; export declare function ImportDocumentTypeRequestModelToJSONTyped(value?: ImportDocumentTypeRequestModel | null, ignoreDiscriminator?: boolean): any;