umbraco-management-api-client
Version:
TypeScript client for the Umbraco Management API (auto-generated by OpenAPI Generator)
58 lines (57 loc) • 2.24 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 { TrackedReferenceDocumentTypeModel } from './TrackedReferenceDocumentTypeModel';
/**
*
* @export
* @interface DocumentTypePropertyTypeReferenceResponseModel
*/
export interface DocumentTypePropertyTypeReferenceResponseModel {
/**
*
* @type {string}
* @memberof DocumentTypePropertyTypeReferenceResponseModel
*/
$type: string;
/**
*
* @type {string}
* @memberof DocumentTypePropertyTypeReferenceResponseModel
*/
id: string;
/**
*
* @type {string}
* @memberof DocumentTypePropertyTypeReferenceResponseModel
*/
name?: string | null;
/**
*
* @type {string}
* @memberof DocumentTypePropertyTypeReferenceResponseModel
*/
alias?: string | null;
/**
*
* @type {TrackedReferenceDocumentTypeModel}
* @memberof DocumentTypePropertyTypeReferenceResponseModel
*/
documentType: TrackedReferenceDocumentTypeModel;
}
/**
* Check if a given object implements the DocumentTypePropertyTypeReferenceResponseModel interface.
*/
export declare function instanceOfDocumentTypePropertyTypeReferenceResponseModel(value: object): value is DocumentTypePropertyTypeReferenceResponseModel;
export declare function DocumentTypePropertyTypeReferenceResponseModelFromJSON(json: any): DocumentTypePropertyTypeReferenceResponseModel;
export declare function DocumentTypePropertyTypeReferenceResponseModelFromJSONTyped(json: any, ignoreDiscriminator: boolean): DocumentTypePropertyTypeReferenceResponseModel;
export declare function DocumentTypePropertyTypeReferenceResponseModelToJSON(json: any): DocumentTypePropertyTypeReferenceResponseModel;
export declare function DocumentTypePropertyTypeReferenceResponseModelToJSONTyped(value?: DocumentTypePropertyTypeReferenceResponseModel | null, ignoreDiscriminator?: boolean): any;