import type * as Brevo from "../../../../index.js";
/**
 * @example
 *     {
 *         attributeCategory: "normal",
 *         attributeName: "attributeName"
 *     }
 */
export interface DeleteAttributeRequest {
    /** Category of the attribute */
    attributeCategory: Brevo.DeleteAttributeRequestAttributeCategory;
    /** Name of the existing attribute */
    attributeName: string;
}
