microsoft.dynamics.crm.entity.collection.request.FeedbackCollectionRequest 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.collection.request;
import com.github.davidmoten.odata.client.CollectionPageEntityRequest;
import com.github.davidmoten.odata.client.ContextPath;
import com.github.davidmoten.odata.client.NameValue;
import microsoft.dynamics.crm.entity.Feedback;
import microsoft.dynamics.crm.entity.request.DuplicaterecordRequest;
import microsoft.dynamics.crm.entity.request.FeedbackRequest;
import microsoft.dynamics.crm.entity.request.PrincipalobjectattributeaccessRequest;
import microsoft.dynamics.crm.entity.request.SyncerrorRequest;
import microsoft.dynamics.crm.schema.SchemaInfo;
public class FeedbackCollectionRequest extends CollectionPageEntityRequest{
protected ContextPath contextPath;
public FeedbackCollectionRequest(ContextPath contextPath) {
super(contextPath, Feedback.class, cp -> new FeedbackRequest(cp), SchemaInfo.INSTANCE);
this.contextPath = contextPath;
}
public PrincipalobjectattributeaccessCollectionRequest feedback_principalobjectattributeaccess() {
return new PrincipalobjectattributeaccessCollectionRequest(contextPath.addSegment("feedback_principalobjectattributeaccess"));
}
public PrincipalobjectattributeaccessRequest feedback_principalobjectattributeaccess(String principalobjectattributeaccessid) {
return new PrincipalobjectattributeaccessRequest(contextPath.addSegment("feedback_principalobjectattributeaccess").addKeys(new NameValue(principalobjectattributeaccessid.toString())));
}
public FeedbackCollectionRequest feedback_feedback() {
return new FeedbackCollectionRequest(contextPath.addSegment("feedback_feedback"));
}
public FeedbackRequest feedback_feedback(String feedbackid) {
return new FeedbackRequest(contextPath.addSegment("feedback_feedback").addKeys(new NameValue(feedbackid.toString())));
}
public SyncerrorCollectionRequest feedback_SyncErrors() {
return new SyncerrorCollectionRequest(contextPath.addSegment("Feedback_SyncErrors"));
}
public SyncerrorRequest feedback_SyncErrors(String syncerrorid) {
return new SyncerrorRequest(contextPath.addSegment("Feedback_SyncErrors").addKeys(new NameValue(syncerrorid.toString())));
}
public DuplicaterecordCollectionRequest feedback_DuplicateBaseRecord() {
return new DuplicaterecordCollectionRequest(contextPath.addSegment("feedback_DuplicateBaseRecord"));
}
public DuplicaterecordRequest feedback_DuplicateBaseRecord(String duplicateid) {
return new DuplicaterecordRequest(contextPath.addSegment("feedback_DuplicateBaseRecord").addKeys(new NameValue(duplicateid.toString())));
}
public DuplicaterecordCollectionRequest feedback_DuplicateMatchingRecord() {
return new DuplicaterecordCollectionRequest(contextPath.addSegment("feedback_DuplicateMatchingRecord"));
}
public DuplicaterecordRequest feedback_DuplicateMatchingRecord(String duplicateid) {
return new DuplicaterecordRequest(contextPath.addSegment("feedback_DuplicateMatchingRecord").addKeys(new NameValue(duplicateid.toString())));
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy