UNPKG

umbraco-management-api-client

Version:

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

40 lines (39 loc) 1.42 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 { ReferenceByIdModel } from './ReferenceByIdModel'; /** * * @export * @interface DocumentTypeSortModel */ export interface DocumentTypeSortModel { /** * * @type {ReferenceByIdModel} * @memberof DocumentTypeSortModel */ documentType: ReferenceByIdModel; /** * * @type {number} * @memberof DocumentTypeSortModel */ sortOrder: number; } /** * Check if a given object implements the DocumentTypeSortModel interface. */ export declare function instanceOfDocumentTypeSortModel(value: object): value is DocumentTypeSortModel; export declare function DocumentTypeSortModelFromJSON(json: any): DocumentTypeSortModel; export declare function DocumentTypeSortModelFromJSONTyped(json: any, ignoreDiscriminator: boolean): DocumentTypeSortModel; export declare function DocumentTypeSortModelToJSON(json: any): DocumentTypeSortModel; export declare function DocumentTypeSortModelToJSONTyped(value?: DocumentTypeSortModel | null, ignoreDiscriminator?: boolean): any;