UNPKG

umbraco-management-api-client

Version:

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

39 lines (38 loc) 1.52 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 PartialViewSnippetItemResponseModel */ export interface PartialViewSnippetItemResponseModel { /** * * @type {string} * @memberof PartialViewSnippetItemResponseModel */ id: string; /** * * @type {string} * @memberof PartialViewSnippetItemResponseModel */ name: string; } /** * Check if a given object implements the PartialViewSnippetItemResponseModel interface. */ export declare function instanceOfPartialViewSnippetItemResponseModel(value: object): value is PartialViewSnippetItemResponseModel; export declare function PartialViewSnippetItemResponseModelFromJSON(json: any): PartialViewSnippetItemResponseModel; export declare function PartialViewSnippetItemResponseModelFromJSONTyped(json: any, ignoreDiscriminator: boolean): PartialViewSnippetItemResponseModel; export declare function PartialViewSnippetItemResponseModelToJSON(json: any): PartialViewSnippetItemResponseModel; export declare function PartialViewSnippetItemResponseModelToJSONTyped(value?: PartialViewSnippetItemResponseModel | null, ignoreDiscriminator?: boolean): any;