UNPKG

umbraco-management-api-client

Version:

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

33 lines (32 loc) 1.39 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 PackageConfigurationResponseModel */ export interface PackageConfigurationResponseModel { /** * * @type {string} * @memberof PackageConfigurationResponseModel */ marketplaceUrl: string; } /** * Check if a given object implements the PackageConfigurationResponseModel interface. */ export declare function instanceOfPackageConfigurationResponseModel(value: object): value is PackageConfigurationResponseModel; export declare function PackageConfigurationResponseModelFromJSON(json: any): PackageConfigurationResponseModel; export declare function PackageConfigurationResponseModelFromJSONTyped(json: any, ignoreDiscriminator: boolean): PackageConfigurationResponseModel; export declare function PackageConfigurationResponseModelToJSON(json: any): PackageConfigurationResponseModel; export declare function PackageConfigurationResponseModelToJSONTyped(value?: PackageConfigurationResponseModel | null, ignoreDiscriminator?: boolean): any;