Class MyCartSetLineItemCustomFieldActionBuilder
- All Implemented Interfaces:
Builder<MyCartSetLineItemCustomFieldAction>
Example to create an instance using the builder pattern
MyCartSetLineItemCustomFieldAction myCartSetLineItemCustomFieldAction = MyCartSetLineItemCustomFieldAction.builder()
.name("{name}")
.build()
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionbuild()builds MyCartSetLineItemCustomFieldAction with checking for non-null required valuesbuilds MyCartSetLineItemCustomFieldAction without checking for non-null required valuesidof the LineItem to update.keyof the LineItem to update.getName()Name of the Custom Field.getValue()Ifvalueis absent ornull, this field will be removed if it exists.lineItemId(String lineItemId) idof the LineItem to update.lineItemKey(String lineItemKey) keyof the LineItem to update.Name of the Custom Field.of()factory method for an instance of MyCartSetLineItemCustomFieldActionBuilderof(MyCartSetLineItemCustomFieldAction template) create builder for MyCartSetLineItemCustomFieldAction instanceIfvalueis absent ornull, this field will be removed if it exists.
-
Constructor Details
-
MyCartSetLineItemCustomFieldActionBuilder
public MyCartSetLineItemCustomFieldActionBuilder()
-
-
Method Details
-
lineItemId
idof the LineItem to update. EitherlineItemIdorlineItemKeyis required.- Parameters:
lineItemId- value to be set- Returns:
- Builder
-
lineItemKey
keyof the LineItem to update. EitherlineItemIdorlineItemKeyis required.- Parameters:
lineItemKey- 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
-
getLineItemId
idof the LineItem to update. EitherlineItemIdorlineItemKeyis required.- Returns:
- lineItemId
-
getLineItemKey
keyof the LineItem to update. EitherlineItemIdorlineItemKeyis required.- Returns:
- lineItemKey
-
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 MyCartSetLineItemCustomFieldAction with checking for non-null required values- Specified by:
buildin interfaceBuilder<MyCartSetLineItemCustomFieldAction>- Returns:
- MyCartSetLineItemCustomFieldAction
-
buildUnchecked
builds MyCartSetLineItemCustomFieldAction without checking for non-null required values- Returns:
- MyCartSetLineItemCustomFieldAction
-
of
factory method for an instance of MyCartSetLineItemCustomFieldActionBuilder- Returns:
- builder
-
of
public static MyCartSetLineItemCustomFieldActionBuilder of(MyCartSetLineItemCustomFieldAction template) create builder for MyCartSetLineItemCustomFieldAction instance- Parameters:
template- instance with prefilled values for the builder- Returns:
- builder
-