/** * This interface represents the Permission Structure that's used to assign permissions to service accounts. * * @interface */ export interface PermissionStructure { serviceId: string; permissions: string[]; }