Class CartSetCustomLineItemCustomFieldActionBuilder
- All Implemented Interfaces:
Builder<CartSetCustomLineItemCustomFieldAction>
Example to create an instance using the builder pattern
CartSetCustomLineItemCustomFieldAction cartSetCustomLineItemCustomFieldAction = CartSetCustomLineItemCustomFieldAction.builder()
.name("{name}")
.build()
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionbuild()
builds CartSetCustomLineItemCustomFieldAction with checking for non-null required valuesbuilds CartSetCustomLineItemCustomFieldAction without checking for non-null required valuescustomLineItemId
(String customLineItemId) id
of the CustomLineItem to update.customLineItemKey
(String customLineItemKey) key
of the CustomLineItem to update.id
of the CustomLineItem to update.key
of the CustomLineItem to update.getName()
Name of the Custom Field.getValue()
Ifvalue
is absent ornull
, this field will be removed if it exists.Name of the Custom Field.of()
factory method for an instance of CartSetCustomLineItemCustomFieldActionBuilderof
(CartSetCustomLineItemCustomFieldAction template) create builder for CartSetCustomLineItemCustomFieldAction instanceIfvalue
is absent ornull
, this field will be removed if it exists.
-
Constructor Details
-
CartSetCustomLineItemCustomFieldActionBuilder
public CartSetCustomLineItemCustomFieldActionBuilder()
-
-
Method Details
-
customLineItemId
public CartSetCustomLineItemCustomFieldActionBuilder customLineItemId(@Nullable String customLineItemId) id
of the CustomLineItem to update. EithercustomLineItemId
orcustomLineItemKey
is required.- Parameters:
customLineItemId
- value to be set- Returns:
- Builder
-
customLineItemKey
public CartSetCustomLineItemCustomFieldActionBuilder customLineItemKey(@Nullable String customLineItemKey) key
of the CustomLineItem to update. EithercustomLineItemId
orcustomLineItemKey
is required.- Parameters:
customLineItemKey
- 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
-
getCustomLineItemId
id
of the CustomLineItem to update. EithercustomLineItemId
orcustomLineItemKey
is required.- Returns:
- customLineItemId
-
getCustomLineItemKey
key
of the CustomLineItem to update. EithercustomLineItemId
orcustomLineItemKey
is required.- Returns:
- customLineItemKey
-
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 CartSetCustomLineItemCustomFieldAction with checking for non-null required values- Specified by:
build
in interfaceBuilder<CartSetCustomLineItemCustomFieldAction>
- Returns:
- CartSetCustomLineItemCustomFieldAction
-
buildUnchecked
builds CartSetCustomLineItemCustomFieldAction without checking for non-null required values- Returns:
- CartSetCustomLineItemCustomFieldAction
-
of
factory method for an instance of CartSetCustomLineItemCustomFieldActionBuilder- Returns:
- builder
-
of
public static CartSetCustomLineItemCustomFieldActionBuilder of(CartSetCustomLineItemCustomFieldAction template) create builder for CartSetCustomLineItemCustomFieldAction instance- Parameters:
template
- instance with prefilled values for the builder- Returns:
- builder
-