Class StagedOrderSetItemShippingAddressCustomFieldActionBuilder
java.lang.Object
com.commercetools.api.models.order_edit.StagedOrderSetItemShippingAddressCustomFieldActionBuilder
- All Implemented Interfaces:
Builder<StagedOrderSetItemShippingAddressCustomFieldAction>
public class StagedOrderSetItemShippingAddressCustomFieldActionBuilder
extends Object
implements Builder<StagedOrderSetItemShippingAddressCustomFieldAction>
StagedOrderSetItemShippingAddressCustomFieldActionBuilder
Example to create an instance using the builder pattern
Example to create an instance using the builder pattern
StagedOrderSetItemShippingAddressCustomFieldAction stagedOrderSetItemShippingAddressCustomFieldAction = StagedOrderSetItemShippingAddressCustomFieldAction.builder()
.addressKey("{addressKey}")
.name("{name}")
.build()
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionaddressKey(String addressKey) build()builds StagedOrderSetItemShippingAddressCustomFieldAction with checking for non-null required valuesbuilds StagedOrderSetItemShippingAddressCustomFieldAction without checking for non-null required valuesgetName()Name of the Custom Field.getValue()Ifvalueis absent ornull, this field will be removed if it exists.Name of the Custom Field.of()factory method for an instance of StagedOrderSetItemShippingAddressCustomFieldActionBuildercreate builder for StagedOrderSetItemShippingAddressCustomFieldAction instanceIfvalueis absent ornull, this field will be removed if it exists.
-
Constructor Details
-
StagedOrderSetItemShippingAddressCustomFieldActionBuilder
public StagedOrderSetItemShippingAddressCustomFieldActionBuilder()
-
-
Method Details
-
addressKey
keyof the Address initemShippingAddresses.- Parameters:
addressKey- value to be set- Returns:
- Builder
-
name
Name of the Custom Field.
- Parameters:
name- value to be set- Returns:
- Builder
-
value
If
valueis absent ornull, this field will be removed if it exists. Removing a field that does not exist returns an InvalidOperation error. Ifvalueis provided, it is set for the field defined byname.- Parameters:
value- value to be set- Returns:
- Builder
-
getAddressKey
keyof the Address initemShippingAddresses.- Returns:
- addressKey
-
getName
Name of the Custom Field.
- Returns:
- name
-
getValue
If
valueis absent ornull, this field will be removed if it exists. Removing a field that does not exist returns an InvalidOperation error. Ifvalueis provided, it is set for the field defined byname.- Returns:
- value
-
build
builds StagedOrderSetItemShippingAddressCustomFieldAction with checking for non-null required values- Specified by:
buildin interfaceBuilder<StagedOrderSetItemShippingAddressCustomFieldAction>- Returns:
- StagedOrderSetItemShippingAddressCustomFieldAction
-
buildUnchecked
builds StagedOrderSetItemShippingAddressCustomFieldAction without checking for non-null required values- Returns:
- StagedOrderSetItemShippingAddressCustomFieldAction
-
of
factory method for an instance of StagedOrderSetItemShippingAddressCustomFieldActionBuilder- Returns:
- builder
-
of
public static StagedOrderSetItemShippingAddressCustomFieldActionBuilder of(StagedOrderSetItemShippingAddressCustomFieldAction template) create builder for StagedOrderSetItemShippingAddressCustomFieldAction instance- Parameters:
template- instance with prefilled values for the builder- Returns:
- builder
-