UNPKG

umbraco-management-api-client

Version:

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

40 lines (39 loc) 1.51 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 { PostUserGroupByIdUsersRequestInner } from './PostUserGroupByIdUsersRequestInner'; /** * * @export * @interface PagedReferenceByIdModel */ export interface PagedReferenceByIdModel { /** * * @type {number} * @memberof PagedReferenceByIdModel */ total: number; /** * * @type {Array<PostUserGroupByIdUsersRequestInner>} * @memberof PagedReferenceByIdModel */ items: Array<PostUserGroupByIdUsersRequestInner>; } /** * Check if a given object implements the PagedReferenceByIdModel interface. */ export declare function instanceOfPagedReferenceByIdModel(value: object): value is PagedReferenceByIdModel; export declare function PagedReferenceByIdModelFromJSON(json: any): PagedReferenceByIdModel; export declare function PagedReferenceByIdModelFromJSONTyped(json: any, ignoreDiscriminator: boolean): PagedReferenceByIdModel; export declare function PagedReferenceByIdModelToJSON(json: any): PagedReferenceByIdModel; export declare function PagedReferenceByIdModelToJSONTyped(value?: PagedReferenceByIdModel | null, ignoreDiscriminator?: boolean): any;