microsoft.dynamics.crm.entity.collection.request.KnowledgearticleviewsCollectionRequest 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.Knowledgearticleviews;
import microsoft.dynamics.crm.entity.request.KnowledgearticleviewsRequest;
import microsoft.dynamics.crm.entity.request.PrincipalobjectattributeaccessRequest;
import microsoft.dynamics.crm.entity.request.SyncerrorRequest;
import microsoft.dynamics.crm.schema.SchemaInfo;
public class KnowledgearticleviewsCollectionRequest extends CollectionPageEntityRequest{
protected ContextPath contextPath;
public KnowledgearticleviewsCollectionRequest(ContextPath contextPath) {
super(contextPath, Knowledgearticleviews.class, cp -> new KnowledgearticleviewsRequest(cp), SchemaInfo.INSTANCE);
this.contextPath = contextPath;
}
public SyncerrorCollectionRequest knowledgeArticleViews_SyncErrors() {
return new SyncerrorCollectionRequest(contextPath.addSegment("KnowledgeArticleViews_SyncErrors"));
}
public SyncerrorRequest knowledgeArticleViews_SyncErrors(String syncerrorid) {
return new SyncerrorRequest(contextPath.addSegment("KnowledgeArticleViews_SyncErrors").addKeys(new NameValue(syncerrorid.toString())));
}
public PrincipalobjectattributeaccessCollectionRequest knowledgearticleviews_principalobjectattributeaccess() {
return new PrincipalobjectattributeaccessCollectionRequest(contextPath.addSegment("knowledgearticleviews_principalobjectattributeaccess"));
}
public PrincipalobjectattributeaccessRequest knowledgearticleviews_principalobjectattributeaccess(String principalobjectattributeaccessid) {
return new PrincipalobjectattributeaccessRequest(contextPath.addSegment("knowledgearticleviews_principalobjectattributeaccess").addKeys(new NameValue(principalobjectattributeaccessid.toString())));
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy