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