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