phpDocumentor

CustomerAddonValueRepository

Interface CustomerAddonValueRepository

Table of Contents

createCustomerAddonValue()  : CustomerAddonValueId
Creates a new customer addon value and returns its ID.
createMultipleCustomerAddonValues()  : CustomerAddonValueIds
Creates multiple customer addon values and returns their IDs.
deleteCustomerAddonValuesByCustomerIds()  : void
Deletes all customer addon values based on the given customer IDs.
deleteCustomerAddonValuesByIds()  : void
Deletes customer addon values based on the given customer addon value IDs.
deleteCustomerAddonValuesByKeys()  : void
Deletes all customer addon values based on the given addon value keys.
filterCustomerAddonValues()  : CustomerAddonValues
Returns a filtered and paginated collection of customer addon values based on the given filter and sorting arguments. The filters must be a map, that assigns an attribute its filtering pattern. The sorting must be a comma-separated list of attributes. A `-` can be used to change the order to descend.
getCustomerAddonValue()  : CustomerAddonValue
Returns a specific customer addon value.
getCustomerAddonValues()  : CustomerAddonValues
Returns all available customers addon values of a specific customer.
getCustomerAddonValuesTotalCount()  : int
Returns total count of customer addon values based on the given filter arguments.
storeCustomerAddonValues()  : void
Stores multiple customer addon values.

Methods

filterCustomerAddonValues()

Returns a filtered and paginated collection of customer addon values based on the given filter and sorting arguments. The filters must be a map, that assigns an attribute its filtering pattern. The sorting must be a comma-separated list of attributes. A `-` can be used to change the order to descend.

public filterCustomerAddonValues(CustomerId $customerId, CustomerAddonValueFilters $filters, CustomerAddonValueSorting $sorting, Pagination $pagination) : CustomerAddonValues
Parameters
$customerId : CustomerId
$filters : CustomerAddonValueFilters
$sorting : CustomerAddonValueSorting
$pagination : Pagination
Return values
CustomerAddonValues

Search results