/*! * Copyright Adaptavist 2022 (c) All rights reserved */ export interface LabelCreate { /** * The prefix for the label. `global`, `my` `team`, etc. */ prefix: string; /** * The name of the label, which will be shown in the UI. */ name: string; [x: string]: any; } //# sourceMappingURL=LabelCreate.d.ts.map