UNPKG

umbraco-management-api-client

Version:

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

39 lines (38 loc) 1.36 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 MemberGroupResponseModel */ export interface MemberGroupResponseModel { /** * * @type {string} * @memberof MemberGroupResponseModel */ name: string; /** * * @type {string} * @memberof MemberGroupResponseModel */ id: string; } /** * Check if a given object implements the MemberGroupResponseModel interface. */ export declare function instanceOfMemberGroupResponseModel(value: object): value is MemberGroupResponseModel; export declare function MemberGroupResponseModelFromJSON(json: any): MemberGroupResponseModel; export declare function MemberGroupResponseModelFromJSONTyped(json: any, ignoreDiscriminator: boolean): MemberGroupResponseModel; export declare function MemberGroupResponseModelToJSON(json: any): MemberGroupResponseModel; export declare function MemberGroupResponseModelToJSONTyped(value?: MemberGroupResponseModel | null, ignoreDiscriminator?: boolean): any;