microsoft.dynamics.crm.entity.request.ExpiredprocessRequest 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.Expiredprocess;
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 ExpiredprocessRequest extends EntityRequest {
public ExpiredprocessRequest(ContextPath contextPath) {
super(Expiredprocess.class, contextPath, SchemaInfo.INSTANCE);
}
public SyncerrorCollectionRequest expiredProcess_SyncErrors() {
return new SyncerrorCollectionRequest(
contextPath.addSegment("ExpiredProcess_SyncErrors"));
}
public SyncerrorRequest expiredProcess_SyncErrors(String syncerrorid) {
return new SyncerrorRequest(contextPath.addSegment("ExpiredProcess_SyncErrors").addKeys(new NameValue(syncerrorid.toString())));
}
public KnowledgearticleRequest knowledgearticleid() {
return new KnowledgearticleRequest(contextPath.addSegment("knowledgearticleid"));
}
public ProcesssessionCollectionRequest expiredProcess_ProcessSessions() {
return new ProcesssessionCollectionRequest(
contextPath.addSegment("ExpiredProcess_ProcessSessions"));
}
public ProcesssessionRequest expiredProcess_ProcessSessions(String processsessionid) {
return new ProcesssessionRequest(contextPath.addSegment("ExpiredProcess_ProcessSessions").addKeys(new NameValue(processsessionid.toString())));
}
public SystemuserRequest createdbyname() {
return new SystemuserRequest(contextPath.addSegment("createdbyname"));
}
public WorkflowlogCollectionRequest workflowlogs_expiredprocess() {
return new WorkflowlogCollectionRequest(
contextPath.addSegment("workflowlogs_expiredprocess"));
}
public WorkflowlogRequest workflowlogs_expiredprocess(String workflowlogid) {
return new WorkflowlogRequest(contextPath.addSegment("workflowlogs_expiredprocess").addKeys(new NameValue(workflowlogid.toString())));
}
public OrganizationRequest organizationid() {
return new OrganizationRequest(contextPath.addSegment("organizationid"));
}
public WorkflowRequest processid() {
return new WorkflowRequest(contextPath.addSegment("processid"));
}
public ProcessstageRequest activestageid() {
return new ProcessstageRequest(contextPath.addSegment("activestageid"));
}
public TransactioncurrencyRequest transactioncurrencyid() {
return new TransactioncurrencyRequest(contextPath.addSegment("transactioncurrencyid"));
}
public SystemuserRequest modifiedonbehalfbyname() {
return new SystemuserRequest(contextPath.addSegment("modifiedonbehalfbyname"));
}
public SystemuserRequest modifiedbyname() {
return new SystemuserRequest(contextPath.addSegment("modifiedbyname"));
}
public SystemuserRequest createdonbehalfbyname() {
return new SystemuserRequest(contextPath.addSegment("createdonbehalfbyname"));
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy