/** * Linkbreakers API * This is a documentation of all the APIs of Linkbreakers * * The version of the OpenAPI document: 1.118.3 * * * 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 DeleteAttributeResponse */ export interface DeleteAttributeResponse { /** * * @type {boolean} * @memberof DeleteAttributeResponse */ success?: boolean; } /** * Check if a given object implements the DeleteAttributeResponse interface. */ export declare function instanceOfDeleteAttributeResponse(value: object): value is DeleteAttributeResponse; export declare function DeleteAttributeResponseFromJSON(json: any): DeleteAttributeResponse; export declare function DeleteAttributeResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): DeleteAttributeResponse; export declare function DeleteAttributeResponseToJSON(json: any): DeleteAttributeResponse; export declare function DeleteAttributeResponseToJSONTyped(value?: DeleteAttributeResponse | null, ignoreDiscriminator?: boolean): any;