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

odata.msgraph.client.entity.collection.request.EducationRubricCollectionRequest Maven / Gradle / Ivy

package odata.msgraph.client.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 odata.msgraph.client.entity.EducationRubric;
import odata.msgraph.client.entity.request.EducationRubricRequest;

public class EducationRubricCollectionRequest extends CollectionPageEntityRequest{

    protected ContextPath contextPath;

    public EducationRubricCollectionRequest(ContextPath contextPath, Optional value) {
        super(contextPath, EducationRubric.class, cp -> new EducationRubricRequest(cp, Optional.empty()), value);
        this.contextPath = contextPath;
    }

}