umbraco-management-api-client
Version:
TypeScript client for the Umbraco Management API (auto-generated by OpenAPI Generator)
72 lines (71 loc) • 2 kB
TypeScript
/**
* 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 { HealthStatusResponseModel } from './HealthStatusResponseModel';
/**
*
* @export
* @interface IndexResponseModel
*/
export interface IndexResponseModel {
/**
*
* @type {string}
* @memberof IndexResponseModel
*/
name: string;
/**
*
* @type {HealthStatusResponseModel}
* @memberof IndexResponseModel
*/
healthStatus: HealthStatusResponseModel;
/**
*
* @type {boolean}
* @memberof IndexResponseModel
*/
canRebuild: boolean;
/**
*
* @type {string}
* @memberof IndexResponseModel
*/
searcherName: string;
/**
*
* @type {number}
* @memberof IndexResponseModel
*/
documentCount: number;
/**
*
* @type {number}
* @memberof IndexResponseModel
*/
fieldCount: number;
/**
*
* @type {{ [key: string]: any | null; }}
* @memberof IndexResponseModel
*/
providerProperties?: {
[key: string]: any | null;
} | null;
}
/**
* Check if a given object implements the IndexResponseModel interface.
*/
export declare function instanceOfIndexResponseModel(value: object): value is IndexResponseModel;
export declare function IndexResponseModelFromJSON(json: any): IndexResponseModel;
export declare function IndexResponseModelFromJSONTyped(json: any, ignoreDiscriminator: boolean): IndexResponseModel;
export declare function IndexResponseModelToJSON(json: any): IndexResponseModel;
export declare function IndexResponseModelToJSONTyped(value?: IndexResponseModel | null, ignoreDiscriminator?: boolean): any;