UNPKG

umbraco-management-api-client

Version:

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

46 lines (45 loc) 1.69 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 MemberTypeReferenceResponseModel */ export interface MemberTypeReferenceResponseModel { /** * * @type {string} * @memberof MemberTypeReferenceResponseModel */ id: string; /** * * @type {string} * @memberof MemberTypeReferenceResponseModel */ icon: string; /** * * @type {ReferenceByIdModel} * @memberof MemberTypeReferenceResponseModel */ collection?: ReferenceByIdModel | null; } /** * Check if a given object implements the MemberTypeReferenceResponseModel interface. */ export declare function instanceOfMemberTypeReferenceResponseModel(value: object): value is MemberTypeReferenceResponseModel; export declare function MemberTypeReferenceResponseModelFromJSON(json: any): MemberTypeReferenceResponseModel; export declare function MemberTypeReferenceResponseModelFromJSONTyped(json: any, ignoreDiscriminator: boolean): MemberTypeReferenceResponseModel; export declare function MemberTypeReferenceResponseModelToJSON(json: any): MemberTypeReferenceResponseModel; export declare function MemberTypeReferenceResponseModelToJSONTyped(value?: MemberTypeReferenceResponseModel | null, ignoreDiscriminator?: boolean): any;