Interface CustomerAddress

All Known Implementing Classes:
CustomerAddressImpl

public interface CustomerAddress

Different from Address in that key is required and id is not supported.


Example to create an instance using the builder pattern

     CustomerAddress customerAddress = CustomerAddress.builder()
             .key("{key}")
             .country("{country}")
             .build()