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

microsoft.dynamics.crm.entity.request.CallbackregistrationRequest Maven / Gradle / Ivy

package microsoft.dynamics.crm.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 microsoft.dynamics.crm.entity.Callbackregistration;

@JsonIgnoreType
public class CallbackregistrationRequest extends EntityRequest {

    public CallbackregistrationRequest(ContextPath contextPath, Optional value) {
        super(Callbackregistration.class, contextPath, value, false);
    }

    public SystemuserRequest callbackregistration_modifiedonbehalfby() {
        return new SystemuserRequest(contextPath.addSegment("callbackregistration_modifiedonbehalfby"), Optional.empty());
    }

    public SystemuserRequest callbackregistration_modifiedby() {
        return new SystemuserRequest(contextPath.addSegment("callbackregistration_modifiedby"), Optional.empty());
    }

    public SystemuserRequest callbackregistration_createdonbehalfby() {
        return new SystemuserRequest(contextPath.addSegment("callbackregistration_createdonbehalfby"), Optional.empty());
    }

    public SystemuserRequest callbackregistration_createdby() {
        return new SystemuserRequest(contextPath.addSegment("callbackregistration_createdby"), Optional.empty());
    }

    public BusinessunitRequest owningbusinessunit() {
        return new BusinessunitRequest(contextPath.addSegment("owningbusinessunit"), Optional.empty());
    }

    public PrincipalRequest ownerid() {
        return new PrincipalRequest(contextPath.addSegment("ownerid"), Optional.empty());
    }

}