microsoft.dynamics.crm.entity.request.CallbackregistrationRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of odata-client-microsoft-dynamics Show documentation
Show all versions of odata-client-microsoft-dynamics Show documentation
Java client as template for Microsoft Dynamics organisation endpoints
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 microsoft.dynamics.crm.entity.Callbackregistration;
import microsoft.dynamics.crm.schema.SchemaInfo;
@JsonIgnoreType
public class CallbackregistrationRequest extends EntityRequest {
public CallbackregistrationRequest(ContextPath contextPath) {
super(Callbackregistration.class, contextPath, SchemaInfo.INSTANCE);
}
public SystemuserRequest callbackregistration_modifiedonbehalfby() {
return new SystemuserRequest(contextPath.addSegment("callbackregistration_modifiedonbehalfby"));
}
public SystemuserRequest callbackregistration_modifiedby() {
return new SystemuserRequest(contextPath.addSegment("callbackregistration_modifiedby"));
}
public SystemuserRequest callbackregistration_createdonbehalfby() {
return new SystemuserRequest(contextPath.addSegment("callbackregistration_createdonbehalfby"));
}
public SystemuserRequest callbackregistration_createdby() {
return new SystemuserRequest(contextPath.addSegment("callbackregistration_createdby"));
}
public BusinessunitRequest owningbusinessunit() {
return new BusinessunitRequest(contextPath.addSegment("owningbusinessunit"));
}
public PrincipalRequest ownerid() {
return new PrincipalRequest(contextPath.addSegment("ownerid"));
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy