UNPKG

umbraco-management-api-client

Version:

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

40 lines (39 loc) 1.75 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 { PagedDictionaryOverviewResponseModelItemsInner } from './PagedDictionaryOverviewResponseModelItemsInner'; /** * * @export * @interface PagedDictionaryOverviewResponseModel */ export interface PagedDictionaryOverviewResponseModel { /** * * @type {number} * @memberof PagedDictionaryOverviewResponseModel */ total: number; /** * * @type {Array<PagedDictionaryOverviewResponseModelItemsInner>} * @memberof PagedDictionaryOverviewResponseModel */ items: Array<PagedDictionaryOverviewResponseModelItemsInner>; } /** * Check if a given object implements the PagedDictionaryOverviewResponseModel interface. */ export declare function instanceOfPagedDictionaryOverviewResponseModel(value: object): value is PagedDictionaryOverviewResponseModel; export declare function PagedDictionaryOverviewResponseModelFromJSON(json: any): PagedDictionaryOverviewResponseModel; export declare function PagedDictionaryOverviewResponseModelFromJSONTyped(json: any, ignoreDiscriminator: boolean): PagedDictionaryOverviewResponseModel; export declare function PagedDictionaryOverviewResponseModelToJSON(json: any): PagedDictionaryOverviewResponseModel; export declare function PagedDictionaryOverviewResponseModelToJSONTyped(value?: PagedDictionaryOverviewResponseModel | null, ignoreDiscriminator?: boolean): any;