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

odata.msgraph.client.beta.entity.request.AndroidWorkProfileCertificateProfileBaseRequest 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 java.lang.Object;
import java.util.Optional;

import odata.msgraph.client.beta.entity.AndroidWorkProfileCertificateProfileBase;

@JsonIgnoreType
public class AndroidWorkProfileCertificateProfileBaseRequest extends EntityRequest {

    public AndroidWorkProfileCertificateProfileBaseRequest(ContextPath contextPath, Optional value) {
        super(AndroidWorkProfileCertificateProfileBase.class, contextPath, value, false);
    }

    public AndroidWorkProfileTrustedRootCertificateRequest rootCertificate() {
        return new AndroidWorkProfileTrustedRootCertificateRequest(contextPath.addSegment("rootCertificate"), Optional.empty());
    }

}