/*! * Copyright Adaptavist 2022 (c) All rights reserved */ export interface ProjectRole { /** * Whether the calling user is part of this role. */ currentUserRole?: boolean; /** * The name of the project role. */ name?: string; /** * The translated name of the project role. */ translatedName?: string; } //# sourceMappingURL=ProjectRole.d.ts.map