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

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

There is a newer version: 0.2.2
Show newest version
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.AppLogCollectionRequest;
import odata.msgraph.client.entity.request.AppLogCollectionRequestRequest;

public class AppLogCollectionRequestCollectionRequest extends CollectionPageEntityRequest{

    protected ContextPath contextPath;

    public AppLogCollectionRequestCollectionRequest(ContextPath contextPath, Optional value) {
        super(contextPath, AppLogCollectionRequest.class, cp -> new AppLogCollectionRequestRequest(cp, Optional.empty()), value);
        this.contextPath = contextPath;
    }

}