import { Method } from 'axios'; import { Executable } from '../executable'; import { BambuBrandAttribute } from '../interfaces'; /** * The CreateBrandAttribute used by the constructor of Create Brand Attribute */ export declare class CreateBrandAttribute extends Executable implements Partial { brandId?: number; name?: string; description?: string; required?: boolean; unique_key?: boolean; encrypted?: boolean; searchable?: boolean; dataType?: string; getMethod(): Method; getResponse(apiResponse: any): BambuBrandAttribute; getURLPath(tenantId?: string): string; constructor(input?: Partial & { brandId: number; name: string; }); /** * getBody is used by the BambuClient to properly construct the request object body. * @returns Returns the expected body of the request utilizing the defined request attributes. */ getBody(): Partial & { brandId: number; name: string; }; /** * getRootPath is used by the BambuClient to properly construct the request call. * @returns The root path of the request */ getRootPath(): string | undefined; }