umbraco-management-api-client
Version:
TypeScript client for the Umbraco Management API (auto-generated by OpenAPI Generator)
58 lines (57 loc) • 2.2 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 { TrackedReferenceMemberTypeModel } from './TrackedReferenceMemberTypeModel';
/**
*
* @export
* @interface MemberTypePropertyTypeReferenceResponseModel
*/
export interface MemberTypePropertyTypeReferenceResponseModel {
/**
*
* @type {string}
* @memberof MemberTypePropertyTypeReferenceResponseModel
*/
$type: string;
/**
*
* @type {string}
* @memberof MemberTypePropertyTypeReferenceResponseModel
*/
id: string;
/**
*
* @type {string}
* @memberof MemberTypePropertyTypeReferenceResponseModel
*/
name?: string | null;
/**
*
* @type {string}
* @memberof MemberTypePropertyTypeReferenceResponseModel
*/
alias?: string | null;
/**
*
* @type {TrackedReferenceMemberTypeModel}
* @memberof MemberTypePropertyTypeReferenceResponseModel
*/
memberType: TrackedReferenceMemberTypeModel;
}
/**
* Check if a given object implements the MemberTypePropertyTypeReferenceResponseModel interface.
*/
export declare function instanceOfMemberTypePropertyTypeReferenceResponseModel(value: object): value is MemberTypePropertyTypeReferenceResponseModel;
export declare function MemberTypePropertyTypeReferenceResponseModelFromJSON(json: any): MemberTypePropertyTypeReferenceResponseModel;
export declare function MemberTypePropertyTypeReferenceResponseModelFromJSONTyped(json: any, ignoreDiscriminator: boolean): MemberTypePropertyTypeReferenceResponseModel;
export declare function MemberTypePropertyTypeReferenceResponseModelToJSON(json: any): MemberTypePropertyTypeReferenceResponseModel;
export declare function MemberTypePropertyTypeReferenceResponseModelToJSONTyped(value?: MemberTypePropertyTypeReferenceResponseModel | null, ignoreDiscriminator?: boolean): any;