UNPKG

umbraco-management-api-client

Version:

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

39 lines (38 loc) 1.33 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 RelationReferenceModel */ export interface RelationReferenceModel { /** * * @type {string} * @memberof RelationReferenceModel */ id: string; /** * * @type {string} * @memberof RelationReferenceModel */ name?: string | null; } /** * Check if a given object implements the RelationReferenceModel interface. */ export declare function instanceOfRelationReferenceModel(value: object): value is RelationReferenceModel; export declare function RelationReferenceModelFromJSON(json: any): RelationReferenceModel; export declare function RelationReferenceModelFromJSONTyped(json: any, ignoreDiscriminator: boolean): RelationReferenceModel; export declare function RelationReferenceModelToJSON(json: any): RelationReferenceModel; export declare function RelationReferenceModelToJSONTyped(value?: RelationReferenceModel | null, ignoreDiscriminator?: boolean): any;