umbraco-management-api-client
Version:
TypeScript client for the Umbraco Management API (auto-generated by OpenAPI Generator)
40 lines (39 loc) • 1.71 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 { TemplateQueryPropertyTypeModel } from './TemplateQueryPropertyTypeModel';
/**
*
* @export
* @interface TemplateQueryPropertyPresentationModel
*/
export interface TemplateQueryPropertyPresentationModel {
/**
*
* @type {string}
* @memberof TemplateQueryPropertyPresentationModel
*/
alias: string;
/**
*
* @type {TemplateQueryPropertyTypeModel}
* @memberof TemplateQueryPropertyPresentationModel
*/
type: TemplateQueryPropertyTypeModel;
}
/**
* Check if a given object implements the TemplateQueryPropertyPresentationModel interface.
*/
export declare function instanceOfTemplateQueryPropertyPresentationModel(value: object): value is TemplateQueryPropertyPresentationModel;
export declare function TemplateQueryPropertyPresentationModelFromJSON(json: any): TemplateQueryPropertyPresentationModel;
export declare function TemplateQueryPropertyPresentationModelFromJSONTyped(json: any, ignoreDiscriminator: boolean): TemplateQueryPropertyPresentationModel;
export declare function TemplateQueryPropertyPresentationModelToJSON(json: any): TemplateQueryPropertyPresentationModel;
export declare function TemplateQueryPropertyPresentationModelToJSONTyped(value?: TemplateQueryPropertyPresentationModel | null, ignoreDiscriminator?: boolean): any;