Compatibity between daml java sdk and ledger api

HI
Is there an easy way to convert the CreatedEvent from javaapi to that in the ledger api.
https://docs.daml.com/app-dev/bindings-java/javadocs/com/daml/ledger/javaapi/data/CreatedEvent.html

https://docs.daml.com/app-dev/bindings-java/javadocs/com/daml/ledger/api/v1/EventOuterClass.CreatedEvent.html

I need to instantiate a specific Contract object but that requires the created event from java api but what I have is the created event from ledger api using transaction service.

There is a toProto method to do the conversion CreatedEvent

There’s also a fromProto static method defined on CreatedEvent, going the other direction, which might be what you want.

Thanks both. This works.