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

odata.msgraph.client.entity.collection.request.ConversationCollectionRequest 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 com.github.davidmoten.odata.client.NameValue;

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

import odata.msgraph.client.entity.Conversation;
import odata.msgraph.client.entity.request.ConversationRequest;
import odata.msgraph.client.entity.request.ConversationThreadRequest;

public class ConversationCollectionRequest extends CollectionPageEntityRequest{

    protected ContextPath contextPath;

    public ConversationCollectionRequest(ContextPath contextPath, Optional value) {
        super(contextPath, Conversation.class, cp -> new ConversationRequest(cp, Optional.empty()), value);
        this.contextPath = contextPath;
    }

    public ConversationThreadRequest threads(String id) {
        return new ConversationThreadRequest(contextPath.addSegment("threads").addKeys(new NameValue(id, String.class)), Optional.empty());
    }

    public ConversationThreadCollectionRequest threads() {
        return new ConversationThreadCollectionRequest(contextPath.addSegment("threads"), Optional.empty());
    }

}