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