Caplin FXIntegrationAPI Documentation - Version 8.5.0

Message Builder Example - TOBOEntity

package com.caplin.examples.fxapi.generated.motif.fx.tobo.ToboEntityTypesDef; 

import com.caplin.generated.motif.fx.tobo.ToboEntityPartsDef;
import com.caplin.generated.motif.fx.tobo.ToboEntityTypesDef;

public class TOBOEntityExample {
    public static void main(String[] args) {
                    		
		ToboEntityTypesDef.TOBOEntity tOBOEntity =
		ToboEntityTypesDef.TOBOEntity
			.newBuilder()
			.setToboEntityFields(
			ToboEntityPartsDef.TOBOEntityFields
				.newBuilder()
				.setEntityDescription("Customer 1")
				.setEntityId("CUSTONE")
				.setIsDefault("")
				.build())
			.build();
            
    }
}