Caplin FXIntegrationAPI Documentation - Version 6.2.0
Message Builder Example - BlockCommonFields
package com.caplin.examples.fxapi.generated.motif.fx.rates.QuotePartsDef;
import java.math.BigInteger;
import com.caplin.generated.motif.fx.rates.QuotePartsDef;
public class BlockCommonFieldsExample {
public static void main(String[] args) {
QuotePartsDef.BlockCommonFields blockCommonFields =
QuotePartsDef.BlockCommonFields
.newBuilder()
.setNetBuySell("")
.setNetDealtAmount(BigDecimal.valueOf(1000000))
.build();
}
}