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

microsoft.dynamics.crm.entity.collection.request.SolutionhistorydataCollectionRequest Maven / Gradle / Ivy

The newest version!
package microsoft.dynamics.crm.entity.collection.request;

import com.github.davidmoten.odata.client.CollectionPageEntityRequest;
import com.github.davidmoten.odata.client.ContextPath;

import java.lang.Object;
import java.util.Optional;

import microsoft.dynamics.crm.entity.Solutionhistorydata;
import microsoft.dynamics.crm.entity.request.SolutionhistorydataRequest;

public class SolutionhistorydataCollectionRequest extends CollectionPageEntityRequest{

    protected ContextPath contextPath;

    public SolutionhistorydataCollectionRequest(ContextPath contextPath, Optional value) {
        super(contextPath, Solutionhistorydata.class, cp -> new SolutionhistorydataRequest(cp, Optional.empty()), value);
        this.contextPath = contextPath;
    }

}