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

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

There is a newer version: 0.2.2
Show newest version
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 com.github.davidmoten.odata.client.NameValue;

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

import odata.msgraph.client.entity.RiskyServicePrincipal;
import odata.msgraph.client.entity.collection.request.RiskyServicePrincipalHistoryItemCollectionRequest;

@JsonIgnoreType
public class RiskyServicePrincipalRequest extends EntityRequest {

    public RiskyServicePrincipalRequest(ContextPath contextPath, Optional value) {
        super(RiskyServicePrincipal.class, contextPath, value, false);
    }

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

    public RiskyServicePrincipalHistoryItemCollectionRequest history() {
        return new RiskyServicePrincipalHistoryItemCollectionRequest(
                        contextPath.addSegment("history"), Optional.empty());
    }

}