export interface OwnerScreeningConfigEntity {
    id: number;
    risk_category: string;
    risk_type: string;
    always_block: boolean;
    volume_based_block: boolean;
}
export default OwnerScreeningConfigEntity;
