Class ShoppingListSetLineItemCustomFieldActionBuilder
- All Implemented Interfaces:
Builder<ShoppingListSetLineItemCustomFieldAction>
Example to create an instance using the builder pattern
ShoppingListSetLineItemCustomFieldAction shoppingListSetLineItemCustomFieldAction = ShoppingListSetLineItemCustomFieldAction.builder()
.name("{name}")
.build()
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionbuild()
builds ShoppingListSetLineItemCustomFieldAction with checking for non-null required valuesbuilds ShoppingListSetLineItemCustomFieldAction without checking for non-null required valuesTheid
of the ShoppingListLineItem to update.Thekey
of the ShoppingListLineItem to update.getName()
Name of the Custom Field.getValue()
Ifvalue
is absent ornull
, this field will be removed if it exists.lineItemId
(String lineItemId) Theid
of the ShoppingListLineItem to update.lineItemKey
(String lineItemKey) Thekey
of the ShoppingListLineItem to update.Name of the Custom Field.of()
factory method for an instance of ShoppingListSetLineItemCustomFieldActionBuilderof
(ShoppingListSetLineItemCustomFieldAction template) create builder for ShoppingListSetLineItemCustomFieldAction instanceIfvalue
is absent ornull
, this field will be removed if it exists.
-
Constructor Details
-
ShoppingListSetLineItemCustomFieldActionBuilder
public ShoppingListSetLineItemCustomFieldActionBuilder()
-
-
Method Details
-
lineItemId
The
id
of the ShoppingListLineItem to update. EitherlineItemId
orlineItemKey
is required.- Parameters:
lineItemId
- value to be set- Returns:
- Builder
-
lineItemKey
The
key
of the ShoppingListLineItem 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
The
id
of the ShoppingListLineItem to update. EitherlineItemId
orlineItemKey
is required.- Returns:
- lineItemId
-
getLineItemKey
The
key
of the ShoppingListLineItem 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 ShoppingListSetLineItemCustomFieldAction with checking for non-null required values- Specified by:
build
in interfaceBuilder<ShoppingListSetLineItemCustomFieldAction>
- Returns:
- ShoppingListSetLineItemCustomFieldAction
-
buildUnchecked
builds ShoppingListSetLineItemCustomFieldAction without checking for non-null required values- Returns:
- ShoppingListSetLineItemCustomFieldAction
-
of
factory method for an instance of ShoppingListSetLineItemCustomFieldActionBuilder- Returns:
- builder
-
of
public static ShoppingListSetLineItemCustomFieldActionBuilder of(ShoppingListSetLineItemCustomFieldAction template) create builder for ShoppingListSetLineItemCustomFieldAction instance- Parameters:
template
- instance with prefilled values for the builder- Returns:
- builder
-