microsoft.dynamics.crm.entity.request.KnowledgebaserecordRequest 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.Knowledgebaserecord;
import microsoft.dynamics.crm.entity.collection.request.ActivitypointerCollectionRequest;
import microsoft.dynamics.crm.entity.collection.request.AnnotationCollectionRequest;
import microsoft.dynamics.crm.entity.collection.request.AppointmentCollectionRequest;
import microsoft.dynamics.crm.entity.collection.request.AsyncoperationCollectionRequest;
import microsoft.dynamics.crm.entity.collection.request.BulkdeletefailureCollectionRequest;
import microsoft.dynamics.crm.entity.collection.request.ConnectionCollectionRequest;
import microsoft.dynamics.crm.entity.collection.request.DuplicaterecordCollectionRequest;
import microsoft.dynamics.crm.entity.collection.request.EmailCollectionRequest;
import microsoft.dynamics.crm.entity.collection.request.FaxCollectionRequest;
import microsoft.dynamics.crm.entity.collection.request.LetterCollectionRequest;
import microsoft.dynamics.crm.entity.collection.request.PhonecallCollectionRequest;
import microsoft.dynamics.crm.entity.collection.request.PrincipalobjectattributeaccessCollectionRequest;
import microsoft.dynamics.crm.entity.collection.request.ProcesssessionCollectionRequest;
import microsoft.dynamics.crm.entity.collection.request.RecurringappointmentmasterCollectionRequest;
import microsoft.dynamics.crm.entity.collection.request.SocialactivityCollectionRequest;
import microsoft.dynamics.crm.entity.collection.request.SyncerrorCollectionRequest;
import microsoft.dynamics.crm.entity.collection.request.TaskCollectionRequest;
import microsoft.dynamics.crm.schema.SchemaInfo;
@JsonIgnoreType
public class KnowledgebaserecordRequest extends EntityRequest {
public KnowledgebaserecordRequest(ContextPath contextPath) {
super(Knowledgebaserecord.class, contextPath, SchemaInfo.INSTANCE);
}
public SystemuserRequest createdby() {
return new SystemuserRequest(contextPath.addSegment("createdby"));
}
public SystemuserRequest createdonbehalfby() {
return new SystemuserRequest(contextPath.addSegment("createdonbehalfby"));
}
public SystemuserRequest modifiedby() {
return new SystemuserRequest(contextPath.addSegment("modifiedby"));
}
public SystemuserRequest modifiedonbehalfby() {
return new SystemuserRequest(contextPath.addSegment("modifiedonbehalfby"));
}
public OrganizationRequest organizationid() {
return new OrganizationRequest(contextPath.addSegment("organizationid"));
}
public ActivitypointerCollectionRequest knowledgeBaseRecord_ActivityPointers() {
return new ActivitypointerCollectionRequest(
contextPath.addSegment("KnowledgeBaseRecord_ActivityPointers"));
}
public ActivitypointerRequest knowledgeBaseRecord_ActivityPointers(String activityid) {
return new ActivitypointerRequest(contextPath.addSegment("KnowledgeBaseRecord_ActivityPointers").addKeys(new NameValue(activityid.toString())));
}
public AppointmentCollectionRequest knowledgeBaseRecord_Appointments() {
return new AppointmentCollectionRequest(
contextPath.addSegment("KnowledgeBaseRecord_Appointments"));
}
public AppointmentRequest knowledgeBaseRecord_Appointments(String activityid) {
return new AppointmentRequest(contextPath.addSegment("KnowledgeBaseRecord_Appointments").addKeys(new NameValue(activityid.toString())));
}
public EmailCollectionRequest knowledgeBaseRecord_Emails() {
return new EmailCollectionRequest(
contextPath.addSegment("KnowledgeBaseRecord_Emails"));
}
public EmailRequest knowledgeBaseRecord_Emails(String activityid) {
return new EmailRequest(contextPath.addSegment("KnowledgeBaseRecord_Emails").addKeys(new NameValue(activityid.toString())));
}
public FaxCollectionRequest knowledgeBaseRecord_Faxes() {
return new FaxCollectionRequest(
contextPath.addSegment("KnowledgeBaseRecord_Faxes"));
}
public FaxRequest knowledgeBaseRecord_Faxes(String activityid) {
return new FaxRequest(contextPath.addSegment("KnowledgeBaseRecord_Faxes").addKeys(new NameValue(activityid.toString())));
}
public LetterCollectionRequest knowledgeBaseRecord_Letters() {
return new LetterCollectionRequest(
contextPath.addSegment("KnowledgeBaseRecord_Letters"));
}
public LetterRequest knowledgeBaseRecord_Letters(String activityid) {
return new LetterRequest(contextPath.addSegment("KnowledgeBaseRecord_Letters").addKeys(new NameValue(activityid.toString())));
}
public PhonecallCollectionRequest knowledgeBaseRecord_PhoneCalls() {
return new PhonecallCollectionRequest(
contextPath.addSegment("KnowledgeBaseRecord_PhoneCalls"));
}
public PhonecallRequest knowledgeBaseRecord_PhoneCalls(String activityid) {
return new PhonecallRequest(contextPath.addSegment("KnowledgeBaseRecord_PhoneCalls").addKeys(new NameValue(activityid.toString())));
}
public TaskCollectionRequest knowledgeBaseRecord_Tasks() {
return new TaskCollectionRequest(
contextPath.addSegment("KnowledgeBaseRecord_Tasks"));
}
public TaskRequest knowledgeBaseRecord_Tasks(String activityid) {
return new TaskRequest(contextPath.addSegment("KnowledgeBaseRecord_Tasks").addKeys(new NameValue(activityid.toString())));
}
public RecurringappointmentmasterCollectionRequest knowledgeBaseRecord_RecurringAppointmentMasters() {
return new RecurringappointmentmasterCollectionRequest(
contextPath.addSegment("KnowledgeBaseRecord_RecurringAppointmentMasters"));
}
public RecurringappointmentmasterRequest knowledgeBaseRecord_RecurringAppointmentMasters(String activityid) {
return new RecurringappointmentmasterRequest(contextPath.addSegment("KnowledgeBaseRecord_RecurringAppointmentMasters").addKeys(new NameValue(activityid.toString())));
}
public SocialactivityCollectionRequest knowledgeBaseRecord_SocialActivities() {
return new SocialactivityCollectionRequest(
contextPath.addSegment("KnowledgeBaseRecord_SocialActivities"));
}
public SocialactivityRequest knowledgeBaseRecord_SocialActivities(String activityid) {
return new SocialactivityRequest(contextPath.addSegment("KnowledgeBaseRecord_SocialActivities").addKeys(new NameValue(activityid.toString())));
}
public ConnectionCollectionRequest knowledgeBaseRecord_connections1() {
return new ConnectionCollectionRequest(
contextPath.addSegment("KnowledgeBaseRecord_connections1"));
}
public ConnectionRequest knowledgeBaseRecord_connections1(String connectionid) {
return new ConnectionRequest(contextPath.addSegment("KnowledgeBaseRecord_connections1").addKeys(new NameValue(connectionid.toString())));
}
public ConnectionCollectionRequest knowledgeBaseRecord_connections2() {
return new ConnectionCollectionRequest(
contextPath.addSegment("KnowledgeBaseRecord_connections2"));
}
public ConnectionRequest knowledgeBaseRecord_connections2(String connectionid) {
return new ConnectionRequest(contextPath.addSegment("KnowledgeBaseRecord_connections2").addKeys(new NameValue(connectionid.toString())));
}
public DuplicaterecordCollectionRequest knowledgeBaseRecord_DuplicateMatchingRecord() {
return new DuplicaterecordCollectionRequest(
contextPath.addSegment("KnowledgeBaseRecord_DuplicateMatchingRecord"));
}
public DuplicaterecordRequest knowledgeBaseRecord_DuplicateMatchingRecord(String duplicateid) {
return new DuplicaterecordRequest(contextPath.addSegment("KnowledgeBaseRecord_DuplicateMatchingRecord").addKeys(new NameValue(duplicateid.toString())));
}
public DuplicaterecordCollectionRequest knowledgeBaseRecord_DuplicateBaseRecord() {
return new DuplicaterecordCollectionRequest(
contextPath.addSegment("KnowledgeBaseRecord_DuplicateBaseRecord"));
}
public DuplicaterecordRequest knowledgeBaseRecord_DuplicateBaseRecord(String duplicateid) {
return new DuplicaterecordRequest(contextPath.addSegment("KnowledgeBaseRecord_DuplicateBaseRecord").addKeys(new NameValue(duplicateid.toString())));
}
public AnnotationCollectionRequest knowledgeBaseRecord_Annotations() {
return new AnnotationCollectionRequest(
contextPath.addSegment("KnowledgeBaseRecord_Annotations"));
}
public AnnotationRequest knowledgeBaseRecord_Annotations(String annotationid) {
return new AnnotationRequest(contextPath.addSegment("KnowledgeBaseRecord_Annotations").addKeys(new NameValue(annotationid.toString())));
}
public AsyncoperationCollectionRequest knowledgeBaseRecord_AsyncOperations() {
return new AsyncoperationCollectionRequest(
contextPath.addSegment("KnowledgeBaseRecord_AsyncOperations"));
}
public AsyncoperationRequest knowledgeBaseRecord_AsyncOperations(String asyncoperationid) {
return new AsyncoperationRequest(contextPath.addSegment("KnowledgeBaseRecord_AsyncOperations").addKeys(new NameValue(asyncoperationid.toString())));
}
public ProcesssessionCollectionRequest knowledgeBaseRecord_ProcessSession() {
return new ProcesssessionCollectionRequest(
contextPath.addSegment("KnowledgeBaseRecord_ProcessSession"));
}
public ProcesssessionRequest knowledgeBaseRecord_ProcessSession(String processsessionid) {
return new ProcesssessionRequest(contextPath.addSegment("KnowledgeBaseRecord_ProcessSession").addKeys(new NameValue(processsessionid.toString())));
}
public BulkdeletefailureCollectionRequest knowledgeBaseRecord_BulkDeleteFailures() {
return new BulkdeletefailureCollectionRequest(
contextPath.addSegment("KnowledgeBaseRecord_BulkDeleteFailures"));
}
public BulkdeletefailureRequest knowledgeBaseRecord_BulkDeleteFailures(String bulkdeletefailureid) {
return new BulkdeletefailureRequest(contextPath.addSegment("KnowledgeBaseRecord_BulkDeleteFailures").addKeys(new NameValue(bulkdeletefailureid.toString())));
}
public PrincipalobjectattributeaccessCollectionRequest knowledgeBaseRecord_PrincipalObjectAttributeAccess() {
return new PrincipalobjectattributeaccessCollectionRequest(
contextPath.addSegment("KnowledgeBaseRecord_PrincipalObjectAttributeAccess"));
}
public PrincipalobjectattributeaccessRequest knowledgeBaseRecord_PrincipalObjectAttributeAccess(String principalobjectattributeaccessid) {
return new PrincipalobjectattributeaccessRequest(contextPath.addSegment("KnowledgeBaseRecord_PrincipalObjectAttributeAccess").addKeys(new NameValue(principalobjectattributeaccessid.toString())));
}
public SyncerrorCollectionRequest knowledgeBaseRecord_SyncErrors() {
return new SyncerrorCollectionRequest(
contextPath.addSegment("KnowledgeBaseRecord_SyncErrors"));
}
public SyncerrorRequest knowledgeBaseRecord_SyncErrors(String syncerrorid) {
return new SyncerrorRequest(contextPath.addSegment("KnowledgeBaseRecord_SyncErrors").addKeys(new NameValue(syncerrorid.toString())));
}
public TransactioncurrencyRequest transactioncurrencyid() {
return new TransactioncurrencyRequest(contextPath.addSegment("transactioncurrencyid"));
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy