microsoft.dynamics.crm.entity.request.SdkmessageprocessingstepRequest 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 com.github.davidmoten.odata.client.NameValue;
import microsoft.dynamics.crm.entity.Sdkmessageprocessingstep;
import microsoft.dynamics.crm.entity.collection.request.AsyncoperationCollectionRequest;
import microsoft.dynamics.crm.entity.collection.request.SdkmessageprocessingstepimageCollectionRequest;
import microsoft.dynamics.crm.schema.SchemaInfo;
@JsonIgnoreType
public class SdkmessageprocessingstepRequest extends EntityRequest {
public SdkmessageprocessingstepRequest(ContextPath contextPath) {
super(Sdkmessageprocessingstep.class, contextPath, SchemaInfo.INSTANCE);
}
public SdkmessageprocessingstepsecureconfigRequest sdkmessageprocessingstepsecureconfigid() {
return new SdkmessageprocessingstepsecureconfigRequest(contextPath.addSegment("sdkmessageprocessingstepsecureconfigid"));
}
public SdkmessageRequest sdkmessageid() {
return new SdkmessageRequest(contextPath.addSegment("sdkmessageid"));
}
public SystemuserRequest createdonbehalfby() {
return new SystemuserRequest(contextPath.addSegment("createdonbehalfby"));
}
public SdkmessagefilterRequest sdkmessagefilterid() {
return new SdkmessagefilterRequest(contextPath.addSegment("sdkmessagefilterid"));
}
public SystemuserRequest impersonatinguserid() {
return new SystemuserRequest(contextPath.addSegment("impersonatinguserid"));
}
public OrganizationRequest organizationid() {
return new OrganizationRequest(contextPath.addSegment("organizationid"));
}
public PlugintypeRequest plugintypeid() {
return new PlugintypeRequest(contextPath.addSegment("plugintypeid"));
}
public SystemuserRequest modifiedonbehalfby() {
return new SystemuserRequest(contextPath.addSegment("modifiedonbehalfby"));
}
public SystemuserRequest modifiedby() {
return new SystemuserRequest(contextPath.addSegment("modifiedby"));
}
public PlugintypeRequest eventhandler_plugintype() {
return new PlugintypeRequest(contextPath.addSegment("eventhandler_plugintype"));
}
public AsyncoperationCollectionRequest sdkMessageProcessingStep_AsyncOperations() {
return new AsyncoperationCollectionRequest(
contextPath.addSegment("SdkMessageProcessingStep_AsyncOperations"));
}
public AsyncoperationRequest sdkMessageProcessingStep_AsyncOperations(String asyncoperationid) {
return new AsyncoperationRequest(contextPath.addSegment("SdkMessageProcessingStep_AsyncOperations").addKeys(new NameValue(asyncoperationid.toString())));
}
public SystemuserRequest createdby() {
return new SystemuserRequest(contextPath.addSegment("createdby"));
}
public SdkmessageprocessingstepimageCollectionRequest sdkmessageprocessingstepid_sdkmessageprocessingstepimage() {
return new SdkmessageprocessingstepimageCollectionRequest(
contextPath.addSegment("sdkmessageprocessingstepid_sdkmessageprocessingstepimage"));
}
public SdkmessageprocessingstepimageRequest sdkmessageprocessingstepid_sdkmessageprocessingstepimage(String sdkmessageprocessingstepimageid) {
return new SdkmessageprocessingstepimageRequest(contextPath.addSegment("sdkmessageprocessingstepid_sdkmessageprocessingstepimage").addKeys(new NameValue(sdkmessageprocessingstepimageid.toString())));
}
public ServiceendpointRequest eventhandler_serviceendpoint() {
return new ServiceendpointRequest(contextPath.addSegment("eventhandler_serviceendpoint"));
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy