umbraco-management-api-client
Version:
TypeScript client for the Umbraco Management API (auto-generated by OpenAPI Generator)
46 lines (45 loc) • 1.72 kB
TypeScript
/**
* 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 DocumentTypeReferenceResponseModel
*/
export interface DocumentTypeReferenceResponseModel {
/**
*
* @type {string}
* @memberof DocumentTypeReferenceResponseModel
*/
id: string;
/**
*
* @type {string}
* @memberof DocumentTypeReferenceResponseModel
*/
icon: string;
/**
*
* @type {ReferenceByIdModel}
* @memberof DocumentTypeReferenceResponseModel
*/
collection?: ReferenceByIdModel | null;
}
/**
* Check if a given object implements the DocumentTypeReferenceResponseModel interface.
*/
export declare function instanceOfDocumentTypeReferenceResponseModel(value: object): value is DocumentTypeReferenceResponseModel;
export declare function DocumentTypeReferenceResponseModelFromJSON(json: any): DocumentTypeReferenceResponseModel;
export declare function DocumentTypeReferenceResponseModelFromJSONTyped(json: any, ignoreDiscriminator: boolean): DocumentTypeReferenceResponseModel;
export declare function DocumentTypeReferenceResponseModelToJSON(json: any): DocumentTypeReferenceResponseModel;
export declare function DocumentTypeReferenceResponseModelToJSONTyped(value?: DocumentTypeReferenceResponseModel | null, ignoreDiscriminator?: boolean): any;