umbraco-management-api-client
Version:
TypeScript client for the Umbraco Management API (auto-generated by OpenAPI Generator)
58 lines (57 loc) • 2.14 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 MemberTypePropertyTypeContainerResponseModel
*/
export interface MemberTypePropertyTypeContainerResponseModel {
/**
*
* @type {string}
* @memberof MemberTypePropertyTypeContainerResponseModel
*/
id: string;
/**
*
* @type {ReferenceByIdModel}
* @memberof MemberTypePropertyTypeContainerResponseModel
*/
parent?: ReferenceByIdModel | null;
/**
*
* @type {string}
* @memberof MemberTypePropertyTypeContainerResponseModel
*/
name?: string | null;
/**
*
* @type {string}
* @memberof MemberTypePropertyTypeContainerResponseModel
*/
type: string;
/**
*
* @type {number}
* @memberof MemberTypePropertyTypeContainerResponseModel
*/
sortOrder: number;
}
/**
* Check if a given object implements the MemberTypePropertyTypeContainerResponseModel interface.
*/
export declare function instanceOfMemberTypePropertyTypeContainerResponseModel(value: object): value is MemberTypePropertyTypeContainerResponseModel;
export declare function MemberTypePropertyTypeContainerResponseModelFromJSON(json: any): MemberTypePropertyTypeContainerResponseModel;
export declare function MemberTypePropertyTypeContainerResponseModelFromJSONTyped(json: any, ignoreDiscriminator: boolean): MemberTypePropertyTypeContainerResponseModel;
export declare function MemberTypePropertyTypeContainerResponseModelToJSON(json: any): MemberTypePropertyTypeContainerResponseModel;
export declare function MemberTypePropertyTypeContainerResponseModelToJSONTyped(value?: MemberTypePropertyTypeContainerResponseModel | null, ignoreDiscriminator?: boolean): any;