All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.sphere.sdk.customers.expansion.CustomerExpansionModel Maven / Gradle / Ivy

There is a newer version: 2.16.0
Show newest version
package io.sphere.sdk.customers.expansion;

import io.sphere.sdk.customergroups.expansion.CustomerGroupExpansionModel;
import io.sphere.sdk.customers.Customer;
import io.sphere.sdk.expansion.ExpansionPathContainer;

import java.util.List;

public interface CustomerExpansionModel extends ExpansionPathContainer {
    CustomerGroupExpansionModel customerGroup();

    static CustomerExpansionModel of(){
        return new CustomerExpansionModelImpl<>();
    }

    static  CustomerExpansionModel of(final List parentPath, final String path){
        return new CustomerExpansionModelImpl<>(parentPath, path);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy