odata.msgraph.client.beta.entity.set.Contacts Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of odata-client-msgraph-beta Show documentation
Show all versions of odata-client-msgraph-beta Show documentation
Java client for use with Microsoft Graph beta endpoint
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