Class CartSetLineItemCustomFieldActionBuilder
- All Implemented Interfaces:
Builder<CartSetLineItemCustomFieldAction>
Example to create an instance using the builder pattern
CartSetLineItemCustomFieldAction cartSetLineItemCustomFieldAction = CartSetLineItemCustomFieldAction.builder()
.name("{name}")
.build()
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionbuild()
builds CartSetLineItemCustomFieldAction with checking for non-null required valuesbuilds CartSetLineItemCustomFieldAction without checking for non-null required valuesid
of the LineItem to update.key
of the LineItem to update.getName()
Name of the Custom Field.getValue()
Ifvalue
is absent ornull
, this field will be removed if it exists.lineItemId
(String lineItemId) id
of the LineItem to update.lineItemKey
(String lineItemKey) key
of the LineItem to update.Name of the Custom Field.of()
factory method for an instance of CartSetLineItemCustomFieldActionBuilderof
(CartSetLineItemCustomFieldAction template) create builder for CartSetLineItemCustomFieldAction instanceIfvalue
is absent ornull
, this field will be removed if it exists.
-
Constructor Details
-
CartSetLineItemCustomFieldActionBuilder
public CartSetLineItemCustomFieldActionBuilder()
-
-
Method Details
-
lineItemId
id
of the LineItem to update. EitherlineItemId
orlineItemKey
is required.- Parameters:
lineItemId
- value to be set- Returns:
- Builder
-
lineItemKey
key
of the LineItem to update. EitherlineItemId
orlineItemKey
is 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
value
is absent ornull
, this field will be removed if it exists. Removing a field that does not exist returns an InvalidOperation error. Ifvalue
is provided, it is set for the field defined byname
.- Parameters:
value
- value to be set- Returns:
- Builder
-
getLineItemId
id
of the LineItem to update. EitherlineItemId
orlineItemKey
is required.- Returns:
- lineItemId
-
getLineItemKey
key
of the LineItem to update. EitherlineItemId
orlineItemKey
is required.- Returns:
- lineItemKey
-
getName
Name of the Custom Field.
- Returns:
- name
-
getValue
If
value
is absent ornull
, this field will be removed if it exists. Removing a field that does not exist returns an InvalidOperation error. Ifvalue
is provided, it is set for the field defined byname
.- Returns:
- value
-
build
builds CartSetLineItemCustomFieldAction with checking for non-null required values- Specified by:
build
in interfaceBuilder<CartSetLineItemCustomFieldAction>
- Returns:
- CartSetLineItemCustomFieldAction
-
buildUnchecked
builds CartSetLineItemCustomFieldAction without checking for non-null required values- Returns:
- CartSetLineItemCustomFieldAction
-
of
factory method for an instance of CartSetLineItemCustomFieldActionBuilder- Returns:
- builder
-
of
create builder for CartSetLineItemCustomFieldAction instance- Parameters:
template
- instance with prefilled values for the builder- Returns:
- builder
-