UNPKG

umbraco-management-api-client

Version:

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

45 lines (44 loc) 1.63 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. */ /** * * @export * @interface EntityImportAnalysisResponseModel */ export interface EntityImportAnalysisResponseModel { /** * * @type {string} * @memberof EntityImportAnalysisResponseModel */ entityType: string; /** * * @type {string} * @memberof EntityImportAnalysisResponseModel */ alias?: string | null; /** * * @type {string} * @memberof EntityImportAnalysisResponseModel */ key?: string | null; } /** * Check if a given object implements the EntityImportAnalysisResponseModel interface. */ export declare function instanceOfEntityImportAnalysisResponseModel(value: object): value is EntityImportAnalysisResponseModel; export declare function EntityImportAnalysisResponseModelFromJSON(json: any): EntityImportAnalysisResponseModel; export declare function EntityImportAnalysisResponseModelFromJSONTyped(json: any, ignoreDiscriminator: boolean): EntityImportAnalysisResponseModel; export declare function EntityImportAnalysisResponseModelToJSON(json: any): EntityImportAnalysisResponseModel; export declare function EntityImportAnalysisResponseModelToJSONTyped(value?: EntityImportAnalysisResponseModel | null, ignoreDiscriminator?: boolean): any;