Class CountryNotConfiguredInStoreErrorBuilder

java.lang.Object
com.commercetools.api.models.error.CountryNotConfiguredInStoreErrorBuilder
All Implemented Interfaces:
Builder<CountryNotConfiguredInStoreError>

public class CountryNotConfiguredInStoreErrorBuilder extends Object implements Builder<CountryNotConfiguredInStoreError>
CountryNotConfiguredInStoreErrorBuilder
Example to create an instance using the builder pattern

     CountryNotConfiguredInStoreError countryNotConfiguredInStoreError = CountryNotConfiguredInStoreError.builder()
             .message("{message}")
             .plusStoreCountries(storeCountriesBuilder -> storeCountriesBuilder)
             .country("{country}")
             .build()