Class SyncInfoBuilder
java.lang.Object
com.commercetools.history.models.common.SyncInfoBuilder
SyncInfoBuilder
Example to create an instance using the builder pattern
Example to create an instance using the builder pattern
SyncInfo syncInfo = SyncInfo.builder()
.channel(channelBuilder -> channelBuilder)
.externalId("{externalId}")
.syncedAt("{syncedAt}")
.build()
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionbuild()
builds SyncInfo with checking for non-null required valuesbuilds SyncInfo without checking for non-null required valuesset the value to the channelchannel
(Function<ReferenceBuilder, ReferenceBuilder> builder) set the value to the channel using the builder functionexternalId
(String externalId) Can be used to reference an external order instance, file etc.value of channel}Can be used to reference an external order instance, file etc.value of syncedAt}static SyncInfoBuilder
of()
factory method for an instance of SyncInfoBuilderstatic SyncInfoBuilder
create builder for SyncInfo instanceset the value to the syncedAtwithChannel
(Function<ReferenceBuilder, Reference> builder) set the value to the channel using the builder function
-
Constructor Details
-
SyncInfoBuilder
public SyncInfoBuilder()
-
-
Method Details
-
channel
set the value to the channel using the builder function- Parameters:
builder
- function to build the channel value- Returns:
- Builder
-
withChannel
set the value to the channel using the builder function- Parameters:
builder
- function to build the channel value- Returns:
- Builder
-
channel
set the value to the channel- Parameters:
channel
- value to be set- Returns:
- Builder
-
externalId
Can be used to reference an external order instance, file etc.
- Parameters:
externalId
- value to be set- Returns:
- Builder
-
syncedAt
set the value to the syncedAt- Parameters:
syncedAt
- value to be set- Returns:
- Builder
-
getChannel
value of channel}- Returns:
- channel
-
getExternalId
Can be used to reference an external order instance, file etc.
- Returns:
- externalId
-
getSyncedAt
value of syncedAt}- Returns:
- syncedAt
-
build
builds SyncInfo with checking for non-null required values -
buildUnchecked
builds SyncInfo without checking for non-null required values- Returns:
- SyncInfo
-
of
factory method for an instance of SyncInfoBuilder- Returns:
- builder
-
of
create builder for SyncInfo instance- Parameters:
template
- instance with prefilled values for the builder- Returns:
- builder
-