microsoft.dynamics.crm.entity.request.NewprocessRequest 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.Newprocess;
import microsoft.dynamics.crm.entity.collection.request.ProcesssessionCollectionRequest;
import microsoft.dynamics.crm.entity.collection.request.SyncerrorCollectionRequest;
import microsoft.dynamics.crm.entity.collection.request.WorkflowlogCollectionRequest;
import microsoft.dynamics.crm.schema.SchemaInfo;
@JsonIgnoreType
public class NewprocessRequest extends EntityRequest {
public NewprocessRequest(ContextPath contextPath) {
super(Newprocess.class, contextPath, SchemaInfo.INSTANCE);
}
public SystemuserRequest createdbyname() {
return new SystemuserRequest(contextPath.addSegment("createdbyname"));
}
public SystemuserRequest modifiedbyname() {
return new SystemuserRequest(contextPath.addSegment("modifiedbyname"));
}
public KnowledgearticleRequest knowledgearticleid() {
return new KnowledgearticleRequest(contextPath.addSegment("knowledgearticleid"));
}
public ProcesssessionCollectionRequest newProcess_ProcessSessions() {
return new ProcesssessionCollectionRequest(
contextPath.addSegment("NewProcess_ProcessSessions"));
}
public ProcesssessionRequest newProcess_ProcessSessions(String processsessionid) {
return new ProcesssessionRequest(contextPath.addSegment("NewProcess_ProcessSessions").addKeys(new NameValue(processsessionid.toString())));
}
public ProcessstageRequest activestageid() {
return new ProcessstageRequest(contextPath.addSegment("activestageid"));
}
public SystemuserRequest createdonbehalfbyname() {
return new SystemuserRequest(contextPath.addSegment("createdonbehalfbyname"));
}
public WorkflowlogCollectionRequest workflowlogs_newprocess() {
return new WorkflowlogCollectionRequest(
contextPath.addSegment("workflowlogs_newprocess"));
}
public WorkflowlogRequest workflowlogs_newprocess(String workflowlogid) {
return new WorkflowlogRequest(contextPath.addSegment("workflowlogs_newprocess").addKeys(new NameValue(workflowlogid.toString())));
}
public WorkflowRequest processid() {
return new WorkflowRequest(contextPath.addSegment("processid"));
}
public TransactioncurrencyRequest transactioncurrencyid() {
return new TransactioncurrencyRequest(contextPath.addSegment("transactioncurrencyid"));
}
public OrganizationRequest organizationid() {
return new OrganizationRequest(contextPath.addSegment("organizationid"));
}
public SystemuserRequest modifiedonbehalfbyname() {
return new SystemuserRequest(contextPath.addSegment("modifiedonbehalfbyname"));
}
public SyncerrorCollectionRequest newProcess_SyncErrors() {
return new SyncerrorCollectionRequest(
contextPath.addSegment("NewProcess_SyncErrors"));
}
public SyncerrorRequest newProcess_SyncErrors(String syncerrorid) {
return new SyncerrorRequest(contextPath.addSegment("NewProcess_SyncErrors").addKeys(new NameValue(syncerrorid.toString())));
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy