UNPKG

umbraco-management-api-client

Version:

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

45 lines (44 loc) 1.55 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 RelationTypeItemResponseModel */ export interface RelationTypeItemResponseModel { /** * * @type {string} * @memberof RelationTypeItemResponseModel */ id: string; /** * * @type {string} * @memberof RelationTypeItemResponseModel */ name: string; /** * * @type {boolean} * @memberof RelationTypeItemResponseModel */ isDeletable: boolean; } /** * Check if a given object implements the RelationTypeItemResponseModel interface. */ export declare function instanceOfRelationTypeItemResponseModel(value: object): value is RelationTypeItemResponseModel; export declare function RelationTypeItemResponseModelFromJSON(json: any): RelationTypeItemResponseModel; export declare function RelationTypeItemResponseModelFromJSONTyped(json: any, ignoreDiscriminator: boolean): RelationTypeItemResponseModel; export declare function RelationTypeItemResponseModelToJSON(json: any): RelationTypeItemResponseModel; export declare function RelationTypeItemResponseModelToJSONTyped(value?: RelationTypeItemResponseModel | null, ignoreDiscriminator?: boolean): any;