/*! * Copyright Adaptavist 2022 (c) All rights reserved */ export interface GroupLabelAsResponse { /** * The group label name. */ text?: string; /** * The title of the group label. */ title?: string; /** * The type of the group label. */ type?: "ADMIN" | "SINGLE" | "MULTIPLE"; } //# sourceMappingURL=GroupLabelAsResponse.d.ts.map