Class StoreAddCountryActionBuilder

java.lang.Object
com.commercetools.api.models.store.StoreAddCountryActionBuilder
All Implemented Interfaces:
Builder<StoreAddCountryAction>

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

     StoreAddCountryAction storeAddCountryAction = StoreAddCountryAction.builder()
             .country(countryBuilder -> countryBuilder)
             .build()