UNPKG

umbraco-management-api-client

Version:

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

40 lines (39 loc) 1.62 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 { PagedMemberGroupResponseModelItemsInner } from './PagedMemberGroupResponseModelItemsInner'; /** * * @export * @interface PagedMemberGroupResponseModel */ export interface PagedMemberGroupResponseModel { /** * * @type {number} * @memberof PagedMemberGroupResponseModel */ total: number; /** * * @type {Array<PagedMemberGroupResponseModelItemsInner>} * @memberof PagedMemberGroupResponseModel */ items: Array<PagedMemberGroupResponseModelItemsInner>; } /** * Check if a given object implements the PagedMemberGroupResponseModel interface. */ export declare function instanceOfPagedMemberGroupResponseModel(value: object): value is PagedMemberGroupResponseModel; export declare function PagedMemberGroupResponseModelFromJSON(json: any): PagedMemberGroupResponseModel; export declare function PagedMemberGroupResponseModelFromJSONTyped(json: any, ignoreDiscriminator: boolean): PagedMemberGroupResponseModel; export declare function PagedMemberGroupResponseModelToJSON(json: any): PagedMemberGroupResponseModel; export declare function PagedMemberGroupResponseModelToJSONTyped(value?: PagedMemberGroupResponseModel | null, ignoreDiscriminator?: boolean): any;