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

microsoft.dynamics.crm.entity.collection.request.Msdyn_solutioncomponentdatasourceCollectionRequest 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.Msdyn_solutioncomponentdatasource;
import microsoft.dynamics.crm.entity.request.Msdyn_solutioncomponentdatasourceRequest;

public class Msdyn_solutioncomponentdatasourceCollectionRequest extends CollectionPageEntityRequest{

    protected ContextPath contextPath;

    public Msdyn_solutioncomponentdatasourceCollectionRequest(ContextPath contextPath, Optional value) {
        super(contextPath, Msdyn_solutioncomponentdatasource.class, cp -> new Msdyn_solutioncomponentdatasourceRequest(cp, Optional.empty()), value);
        this.contextPath = contextPath;
    }

}