umbraco-management-api-client
Version:
TypeScript client for the Umbraco Management API (auto-generated by OpenAPI Generator)
109 lines (108 loc) • 3.41 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 { PropertyTypeValidationModel } from './PropertyTypeValidationModel';
import type { MemberTypePropertyTypeVisibilityModel } from './MemberTypePropertyTypeVisibilityModel';
import type { PropertyTypeAppearanceModel } from './PropertyTypeAppearanceModel';
import type { ReferenceByIdModel } from './ReferenceByIdModel';
/**
*
* @export
* @interface MemberTypePropertyTypeResponseModel
*/
export interface MemberTypePropertyTypeResponseModel {
/**
*
* @type {string}
* @memberof MemberTypePropertyTypeResponseModel
*/
id: string;
/**
*
* @type {ReferenceByIdModel}
* @memberof MemberTypePropertyTypeResponseModel
*/
container?: ReferenceByIdModel | null;
/**
*
* @type {number}
* @memberof MemberTypePropertyTypeResponseModel
*/
sortOrder: number;
/**
*
* @type {string}
* @memberof MemberTypePropertyTypeResponseModel
*/
alias: string;
/**
*
* @type {string}
* @memberof MemberTypePropertyTypeResponseModel
*/
name: string;
/**
*
* @type {string}
* @memberof MemberTypePropertyTypeResponseModel
*/
description?: string | null;
/**
*
* @type {ReferenceByIdModel}
* @memberof MemberTypePropertyTypeResponseModel
*/
dataType: ReferenceByIdModel;
/**
*
* @type {boolean}
* @memberof MemberTypePropertyTypeResponseModel
*/
variesByCulture: boolean;
/**
*
* @type {boolean}
* @memberof MemberTypePropertyTypeResponseModel
*/
variesBySegment: boolean;
/**
*
* @type {PropertyTypeValidationModel}
* @memberof MemberTypePropertyTypeResponseModel
*/
validation: PropertyTypeValidationModel;
/**
*
* @type {PropertyTypeAppearanceModel}
* @memberof MemberTypePropertyTypeResponseModel
*/
appearance: PropertyTypeAppearanceModel;
/**
*
* @type {boolean}
* @memberof MemberTypePropertyTypeResponseModel
*/
isSensitive: boolean;
/**
*
* @type {MemberTypePropertyTypeVisibilityModel}
* @memberof MemberTypePropertyTypeResponseModel
*/
visibility: MemberTypePropertyTypeVisibilityModel;
}
/**
* Check if a given object implements the MemberTypePropertyTypeResponseModel interface.
*/
export declare function instanceOfMemberTypePropertyTypeResponseModel(value: object): value is MemberTypePropertyTypeResponseModel;
export declare function MemberTypePropertyTypeResponseModelFromJSON(json: any): MemberTypePropertyTypeResponseModel;
export declare function MemberTypePropertyTypeResponseModelFromJSONTyped(json: any, ignoreDiscriminator: boolean): MemberTypePropertyTypeResponseModel;
export declare function MemberTypePropertyTypeResponseModelToJSON(json: any): MemberTypePropertyTypeResponseModel;
export declare function MemberTypePropertyTypeResponseModelToJSONTyped(value?: MemberTypePropertyTypeResponseModel | null, ignoreDiscriminator?: boolean): any;