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

odata.msgraph.client.entity.request.TrendingRequest Maven / Gradle / Ivy

package odata.msgraph.client.entity.request;

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

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

import odata.msgraph.client.entity.Trending;

@JsonIgnoreType
public class TrendingRequest extends EntityRequest {

    public TrendingRequest(ContextPath contextPath, Optional value) {
        super(Trending.class, contextPath, value, false);
    }

    public odata.msgraph.client.entity.request.EntityRequest resource() {
        return new odata.msgraph.client.entity.request.EntityRequest(contextPath.addSegment("resource"), Optional.empty());
    }

}