UNPKG

umbraco-management-api-client

Version:

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

58 lines (57 loc) 1.57 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 ProblemDetails */ export interface ProblemDetails { [key: string]: any | any; /** * * @type {string} * @memberof ProblemDetails */ type?: string | null; /** * * @type {string} * @memberof ProblemDetails */ title?: string | null; /** * * @type {number} * @memberof ProblemDetails */ status?: number | null; /** * * @type {string} * @memberof ProblemDetails */ detail?: string | null; /** * * @type {string} * @memberof ProblemDetails */ instance?: string | null; } /** * Check if a given object implements the ProblemDetails interface. */ export declare function instanceOfProblemDetails(value: object): value is ProblemDetails; export declare function ProblemDetailsFromJSON(json: any): ProblemDetails; export declare function ProblemDetailsFromJSONTyped(json: any, ignoreDiscriminator: boolean): ProblemDetails; export declare function ProblemDetailsToJSON(json: any): ProblemDetails; export declare function ProblemDetailsToJSONTyped(value?: ProblemDetails | null, ignoreDiscriminator?: boolean): any;