UNPKG

umbraco-management-api-client

Version:

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

70 lines (69 loc) 2.11 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 { ObjectTypeResponseModel } from './ObjectTypeResponseModel'; /** * * @export * @interface RelationTypeResponseModel */ export interface RelationTypeResponseModel { /** * * @type {string} * @memberof RelationTypeResponseModel */ name: string; /** * * @type {boolean} * @memberof RelationTypeResponseModel */ isBidirectional: boolean; /** * * @type {boolean} * @memberof RelationTypeResponseModel */ isDependency: boolean; /** * * @type {string} * @memberof RelationTypeResponseModel */ id: string; /** * * @type {string} * @memberof RelationTypeResponseModel */ alias?: string | null; /** * * @type {ObjectTypeResponseModel} * @memberof RelationTypeResponseModel */ parentObject?: ObjectTypeResponseModel | null; /** * * @type {ObjectTypeResponseModel} * @memberof RelationTypeResponseModel */ childObject?: ObjectTypeResponseModel | null; } /** * Check if a given object implements the RelationTypeResponseModel interface. */ export declare function instanceOfRelationTypeResponseModel(value: object): value is RelationTypeResponseModel; export declare function RelationTypeResponseModelFromJSON(json: any): RelationTypeResponseModel; export declare function RelationTypeResponseModelFromJSONTyped(json: any, ignoreDiscriminator: boolean): RelationTypeResponseModel; export declare function RelationTypeResponseModelToJSON(json: any): RelationTypeResponseModel; export declare function RelationTypeResponseModelToJSONTyped(value?: RelationTypeResponseModel | null, ignoreDiscriminator?: boolean): any;