export interface AttributeType {
    description?: string;
    name: string;
    type?: string;
    optional?: boolean;
    defaultValue?: string;
    binding?: string;
}
