customerAttributes method

InitializeCustomerRequestBuilder customerAttributes(
  1. CustomerAttributes? attributes
)

Provide extra customer attributes.

Implementation

InitializeCustomerRequestBuilder customerAttributes(
    CustomerAttributes? attributes) {
  _customerAttributes = attributes;
  return this;
}