import type { InputTypeEnum } from './input-type-enum';
export interface AttributeRequest {
    'id'?: number;
    'name': string;
    'mutable': boolean;
    'input_type': InputTypeEnum;
    'default_value'?: string;
    'values': Array<string>;
}
