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

odata.msgraph.client.entity.collection.request.BookingStaffMemberBaseCollectionRequest 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.BookingStaffMemberBase;
import odata.msgraph.client.entity.request.BookingStaffMemberBaseRequest;

public class BookingStaffMemberBaseCollectionRequest extends CollectionPageEntityRequest{

    protected ContextPath contextPath;

    public BookingStaffMemberBaseCollectionRequest(ContextPath contextPath, Optional value) {
        super(contextPath, BookingStaffMemberBase.class, cp -> new BookingStaffMemberBaseRequest(cp, Optional.empty()), value);
        this.contextPath = contextPath;
    }

}