microsoft.dynamics.crm.entity.request.KbarticlecommentRequest 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.Kbarticlecomment;
import microsoft.dynamics.crm.entity.collection.request.AsyncoperationCollectionRequest;
import microsoft.dynamics.crm.entity.collection.request.BulkdeletefailureCollectionRequest;
import microsoft.dynamics.crm.entity.collection.request.ProcesssessionCollectionRequest;
import microsoft.dynamics.crm.schema.SchemaInfo;
@JsonIgnoreType
public class KbarticlecommentRequest extends EntityRequest {
public KbarticlecommentRequest(ContextPath contextPath) {
super(Kbarticlecomment.class, contextPath, SchemaInfo.INSTANCE);
}
public BulkdeletefailureCollectionRequest kbArticleComment_BulkDeleteFailures() {
return new BulkdeletefailureCollectionRequest(
contextPath.addSegment("KbArticleComment_BulkDeleteFailures"));
}
public BulkdeletefailureRequest kbArticleComment_BulkDeleteFailures(String bulkdeletefailureid) {
return new BulkdeletefailureRequest(contextPath.addSegment("KbArticleComment_BulkDeleteFailures").addKeys(new NameValue(bulkdeletefailureid.toString())));
}
public SystemuserRequest createdby() {
return new SystemuserRequest(contextPath.addSegment("createdby"));
}
public SystemuserRequest createdonbehalfby() {
return new SystemuserRequest(contextPath.addSegment("createdonbehalfby"));
}
public AsyncoperationCollectionRequest kbArticleComment_AsyncOperations() {
return new AsyncoperationCollectionRequest(
contextPath.addSegment("KbArticleComment_AsyncOperations"));
}
public AsyncoperationRequest kbArticleComment_AsyncOperations(String asyncoperationid) {
return new AsyncoperationRequest(contextPath.addSegment("KbArticleComment_AsyncOperations").addKeys(new NameValue(asyncoperationid.toString())));
}
public SystemuserRequest modifiedonbehalfby() {
return new SystemuserRequest(contextPath.addSegment("modifiedonbehalfby"));
}
public KbarticleRequest kbarticleid() {
return new KbarticleRequest(contextPath.addSegment("kbarticleid"));
}
public ProcesssessionCollectionRequest kbArticleComment_ProcessSessions() {
return new ProcesssessionCollectionRequest(
contextPath.addSegment("KbArticleComment_ProcessSessions"));
}
public ProcesssessionRequest kbArticleComment_ProcessSessions(String processsessionid) {
return new ProcesssessionRequest(contextPath.addSegment("KbArticleComment_ProcessSessions").addKeys(new NameValue(processsessionid.toString())));
}
public SystemuserRequest modifiedby() {
return new SystemuserRequest(contextPath.addSegment("modifiedby"));
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy