import type { SublabelMappingEntryRequest } from './sublabel-mapping-entry-request';
export interface LabelMappingEntryRequest {
    'name': string;
    'attributes'?: {
        [key: string]: string;
    };
    'sublabels'?: {
        [key: string]: SublabelMappingEntryRequest;
    };
}
