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

odata.msgraph.client.beta.entity.request.DocumentRequest Maven / Gradle / Ivy

There is a newer version: 0.2.2
Show newest version
package odata.msgraph.client.beta.entity.request;

import com.fasterxml.jackson.annotation.JsonIgnoreType;
import com.github.davidmoten.odata.client.ContextPath;
import com.github.davidmoten.odata.client.EntityRequest;
import com.github.davidmoten.odata.client.NameValue;

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

import odata.msgraph.client.beta.entity.Document;
import odata.msgraph.client.beta.entity.collection.request.DocumentCommentCollectionRequest;

@JsonIgnoreType
public class DocumentRequest extends EntityRequest {

    public DocumentRequest(ContextPath contextPath, Optional value) {
        super(Document.class, contextPath, value, false);
    }

    public DocumentCommentCollectionRequest comments() {
        return new DocumentCommentCollectionRequest(
                        contextPath.addSegment("comments"), Optional.empty());
    }

    public DocumentCommentRequest comments(String id) {
        return new DocumentCommentRequest(contextPath.addSegment("comments").addKeys(new NameValue(id.toString())), Optional.empty());
    }

}