UNPKG

umbraco-management-api-client

Version:

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

45 lines (44 loc) 1.58 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 PartialViewSnippetResponseModel */ export interface PartialViewSnippetResponseModel { /** * * @type {string} * @memberof PartialViewSnippetResponseModel */ id: string; /** * * @type {string} * @memberof PartialViewSnippetResponseModel */ name: string; /** * * @type {string} * @memberof PartialViewSnippetResponseModel */ content: string; } /** * Check if a given object implements the PartialViewSnippetResponseModel interface. */ export declare function instanceOfPartialViewSnippetResponseModel(value: object): value is PartialViewSnippetResponseModel; export declare function PartialViewSnippetResponseModelFromJSON(json: any): PartialViewSnippetResponseModel; export declare function PartialViewSnippetResponseModelFromJSONTyped(json: any, ignoreDiscriminator: boolean): PartialViewSnippetResponseModel; export declare function PartialViewSnippetResponseModelToJSON(json: any): PartialViewSnippetResponseModel; export declare function PartialViewSnippetResponseModelToJSONTyped(value?: PartialViewSnippetResponseModel | null, ignoreDiscriminator?: boolean): any;