umbraco-management-api-client
Version:
TypeScript client for the Umbraco Management API (auto-generated by OpenAPI Generator)
45 lines (44 loc) • 1.48 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.
*/
/**
*
* @export
* @interface UpgradeCheckResponseModel
*/
export interface UpgradeCheckResponseModel {
/**
*
* @type {string}
* @memberof UpgradeCheckResponseModel
*/
type: string;
/**
*
* @type {string}
* @memberof UpgradeCheckResponseModel
*/
comment: string;
/**
*
* @type {string}
* @memberof UpgradeCheckResponseModel
*/
url: string;
}
/**
* Check if a given object implements the UpgradeCheckResponseModel interface.
*/
export declare function instanceOfUpgradeCheckResponseModel(value: object): value is UpgradeCheckResponseModel;
export declare function UpgradeCheckResponseModelFromJSON(json: any): UpgradeCheckResponseModel;
export declare function UpgradeCheckResponseModelFromJSONTyped(json: any, ignoreDiscriminator: boolean): UpgradeCheckResponseModel;
export declare function UpgradeCheckResponseModelToJSON(json: any): UpgradeCheckResponseModel;
export declare function UpgradeCheckResponseModelToJSONTyped(value?: UpgradeCheckResponseModel | null, ignoreDiscriminator?: boolean): any;