public enum EodFlowType {
ORDER_EXECUTION(""),
RFQ(":RFQ"),
RISK_BREACH(":RISKBREACH"); // or ":RISK_BREACH" depending on requirements
private final String regionSuffix;
EodFlowType(String regionSuffix) {
this.regionSuffix = regionSuffix;
}
public String regionSuffix() {
return regionSuffix;
}
}
For further actions, you may consider blocking this person and/or reporting abuse
Top comments (0)