/** * This interface represents the Permission Structure that's used to assign permissions to service accounts. * * @interface */ export interface PermissionStructure { serviceId: string; permissions: string[]; } //# sourceMappingURL=permission-structure-interface.d.ts.map