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

odata.msgraph.client.beta.entity.set.Contacts Maven / Gradle / Ivy

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

import com.github.davidmoten.odata.client.ContextPath;

import java.util.Optional;

import odata.msgraph.client.beta.entity.collection.request.OrgContactCollectionRequest;

public final class Contacts extends OrgContactCollectionRequest {

    public Contacts(ContextPath contextPath) {
        super(contextPath, Optional.empty());
    }

    public DirectoryObjects directReports() {
        return new DirectoryObjects(contextPath.addSegment("directReports"));
    }

    public DirectoryObjects manager() {
        return new DirectoryObjects(contextPath.addSegment("manager"));
    }

    public DirectoryObjects memberOf() {
        return new DirectoryObjects(contextPath.addSegment("memberOf"));
    }

    public DirectoryObjects transitiveMemberOf() {
        return new DirectoryObjects(contextPath.addSegment("transitiveMemberOf"));
    }

    public DirectoryObjects transitiveReports() {
        return new DirectoryObjects(contextPath.addSegment("transitiveReports"));
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy