umbraco-management-api-client
Version:
TypeScript client for the Umbraco Management API (auto-generated by OpenAPI Generator)
40 lines (39 loc) • 1.53 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 { PagedProblemDetailsModelItemsInner } from './PagedProblemDetailsModelItemsInner';
/**
*
* @export
* @interface PagedProblemDetailsModel
*/
export interface PagedProblemDetailsModel {
/**
*
* @type {number}
* @memberof PagedProblemDetailsModel
*/
total: number;
/**
*
* @type {Array<PagedProblemDetailsModelItemsInner>}
* @memberof PagedProblemDetailsModel
*/
items: Array<PagedProblemDetailsModelItemsInner>;
}
/**
* Check if a given object implements the PagedProblemDetailsModel interface.
*/
export declare function instanceOfPagedProblemDetailsModel(value: object): value is PagedProblemDetailsModel;
export declare function PagedProblemDetailsModelFromJSON(json: any): PagedProblemDetailsModel;
export declare function PagedProblemDetailsModelFromJSONTyped(json: any, ignoreDiscriminator: boolean): PagedProblemDetailsModel;
export declare function PagedProblemDetailsModelToJSON(json: any): PagedProblemDetailsModel;
export declare function PagedProblemDetailsModelToJSONTyped(value?: PagedProblemDetailsModel | null, ignoreDiscriminator?: boolean): any;