UNPKG

umbraco-management-api-client

Version:

TypeScript client for the Umbraco Management API (auto-generated by OpenAPI Generator)

39 lines (38 loc) 1.6 kB
/** * 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. */ /** * * @export * @interface TemplateQueryResultItemPresentationModel */ export interface TemplateQueryResultItemPresentationModel { /** * * @type {string} * @memberof TemplateQueryResultItemPresentationModel */ icon: string; /** * * @type {string} * @memberof TemplateQueryResultItemPresentationModel */ name: string; } /** * Check if a given object implements the TemplateQueryResultItemPresentationModel interface. */ export declare function instanceOfTemplateQueryResultItemPresentationModel(value: object): value is TemplateQueryResultItemPresentationModel; export declare function TemplateQueryResultItemPresentationModelFromJSON(json: any): TemplateQueryResultItemPresentationModel; export declare function TemplateQueryResultItemPresentationModelFromJSONTyped(json: any, ignoreDiscriminator: boolean): TemplateQueryResultItemPresentationModel; export declare function TemplateQueryResultItemPresentationModelToJSON(json: any): TemplateQueryResultItemPresentationModel; export declare function TemplateQueryResultItemPresentationModelToJSONTyped(value?: TemplateQueryResultItemPresentationModel | null, ignoreDiscriminator?: boolean): any;