UNPKG

umbraco-management-api-client

Version:

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

40 lines (39 loc) 1.64 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 { PagedRelationTypeResponseModelItemsInner } from './PagedRelationTypeResponseModelItemsInner'; /** * * @export * @interface PagedRelationTypeResponseModel */ export interface PagedRelationTypeResponseModel { /** * * @type {number} * @memberof PagedRelationTypeResponseModel */ total: number; /** * * @type {Array<PagedRelationTypeResponseModelItemsInner>} * @memberof PagedRelationTypeResponseModel */ items: Array<PagedRelationTypeResponseModelItemsInner>; } /** * Check if a given object implements the PagedRelationTypeResponseModel interface. */ export declare function instanceOfPagedRelationTypeResponseModel(value: object): value is PagedRelationTypeResponseModel; export declare function PagedRelationTypeResponseModelFromJSON(json: any): PagedRelationTypeResponseModel; export declare function PagedRelationTypeResponseModelFromJSONTyped(json: any, ignoreDiscriminator: boolean): PagedRelationTypeResponseModel; export declare function PagedRelationTypeResponseModelToJSON(json: any): PagedRelationTypeResponseModel; export declare function PagedRelationTypeResponseModelToJSONTyped(value?: PagedRelationTypeResponseModel | null, ignoreDiscriminator?: boolean): any;