UNPKG

umbraco-management-api-client

Version:

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

40 lines (39 loc) 1.51 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 { PagedIndexResponseModelItemsInner } from './PagedIndexResponseModelItemsInner'; /** * * @export * @interface PagedIndexResponseModel */ export interface PagedIndexResponseModel { /** * * @type {number} * @memberof PagedIndexResponseModel */ total: number; /** * * @type {Array<PagedIndexResponseModelItemsInner>} * @memberof PagedIndexResponseModel */ items: Array<PagedIndexResponseModelItemsInner>; } /** * Check if a given object implements the PagedIndexResponseModel interface. */ export declare function instanceOfPagedIndexResponseModel(value: object): value is PagedIndexResponseModel; export declare function PagedIndexResponseModelFromJSON(json: any): PagedIndexResponseModel; export declare function PagedIndexResponseModelFromJSONTyped(json: any, ignoreDiscriminator: boolean): PagedIndexResponseModel; export declare function PagedIndexResponseModelToJSON(json: any): PagedIndexResponseModel; export declare function PagedIndexResponseModelToJSONTyped(value?: PagedIndexResponseModel | null, ignoreDiscriminator?: boolean): any;