Class SyncInfoBuilder

java.lang.Object
com.commercetools.importapi.models.orders.SyncInfoBuilder
All Implemented Interfaces:
io.vrap.rmf.base.client.Builder<SyncInfo>

public class SyncInfoBuilder extends Object implements io.vrap.rmf.base.client.Builder<SyncInfo>
SyncInfoBuilder
Example to create an instance using the builder pattern

     SyncInfo syncInfo = SyncInfo.builder()
             .channel(channelBuilder -> channelBuilder)
             .syncedAt(ZonedDateTime.parse("2022-01-01T12:00:00.301Z"))
             .build()