UNPKG

umbraco-management-api-client

Version:

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

51 lines (50 loc) 1.62 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 CreateTemplateRequestModel */ export interface CreateTemplateRequestModel { /** * * @type {string} * @memberof CreateTemplateRequestModel */ name: string; /** * * @type {string} * @memberof CreateTemplateRequestModel */ alias: string; /** * * @type {string} * @memberof CreateTemplateRequestModel */ content?: string | null; /** * * @type {string} * @memberof CreateTemplateRequestModel */ id?: string | null; } /** * Check if a given object implements the CreateTemplateRequestModel interface. */ export declare function instanceOfCreateTemplateRequestModel(value: object): value is CreateTemplateRequestModel; export declare function CreateTemplateRequestModelFromJSON(json: any): CreateTemplateRequestModel; export declare function CreateTemplateRequestModelFromJSONTyped(json: any, ignoreDiscriminator: boolean): CreateTemplateRequestModel; export declare function CreateTemplateRequestModelToJSON(json: any): CreateTemplateRequestModel; export declare function CreateTemplateRequestModelToJSONTyped(value?: CreateTemplateRequestModel | null, ignoreDiscriminator?: boolean): any;