UNPKG

umbraco-management-api-client

Version:

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

39 lines (38 loc) 1.35 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. */ /** * * @export * @interface ItemSortingRequestModel */ export interface ItemSortingRequestModel { /** * * @type {string} * @memberof ItemSortingRequestModel */ id: string; /** * * @type {number} * @memberof ItemSortingRequestModel */ sortOrder: number; } /** * Check if a given object implements the ItemSortingRequestModel interface. */ export declare function instanceOfItemSortingRequestModel(value: object): value is ItemSortingRequestModel; export declare function ItemSortingRequestModelFromJSON(json: any): ItemSortingRequestModel; export declare function ItemSortingRequestModelFromJSONTyped(json: any, ignoreDiscriminator: boolean): ItemSortingRequestModel; export declare function ItemSortingRequestModelToJSON(json: any): ItemSortingRequestModel; export declare function ItemSortingRequestModelToJSONTyped(value?: ItemSortingRequestModel | null, ignoreDiscriminator?: boolean): any;