microsoft.dynamics.crm.entity.request.PostfollowRequest 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.Postfollow;
import microsoft.dynamics.crm.entity.collection.request.AsyncoperationCollectionRequest;
import microsoft.dynamics.crm.entity.collection.request.SyncerrorCollectionRequest;
import microsoft.dynamics.crm.schema.SchemaInfo;
@JsonIgnoreType
public class PostfollowRequest extends EntityRequest {
public PostfollowRequest(ContextPath contextPath) {
super(Postfollow.class, contextPath, SchemaInfo.INSTANCE);
}
public TaskRequest regardingobjectid_task() {
return new TaskRequest(contextPath.addSegment("regardingobjectid_task"));
}
public AppointmentRequest regardingobjectid_appointment() {
return new AppointmentRequest(contextPath.addSegment("regardingobjectid_appointment"));
}
public PhonecallRequest regardingobjectid_phonecall() {
return new PhonecallRequest(contextPath.addSegment("regardingobjectid_phonecall"));
}
public RecurringappointmentmasterRequest regardingobjectid_recurringappointmentmaster() {
return new RecurringappointmentmasterRequest(contextPath.addSegment("regardingobjectid_recurringappointmentmaster"));
}
public SystemuserRequest createdby() {
return new SystemuserRequest(contextPath.addSegment("createdby"));
}
public AccountRequest regardingobjectid_account() {
return new AccountRequest(contextPath.addSegment("regardingobjectid_account"));
}
public ContactRequest regardingobjectid_contact() {
return new ContactRequest(contextPath.addSegment("regardingobjectid_contact"));
}
public SystemuserRequest regardingobjectid_systemuser() {
return new SystemuserRequest(contextPath.addSegment("regardingobjectid_systemuser"));
}
public AsyncoperationCollectionRequest postFollow_AsyncOperations() {
return new AsyncoperationCollectionRequest(
contextPath.addSegment("PostFollow_AsyncOperations"));
}
public AsyncoperationRequest postFollow_AsyncOperations(String asyncoperationid) {
return new AsyncoperationRequest(contextPath.addSegment("PostFollow_AsyncOperations").addKeys(new NameValue(asyncoperationid.toString())));
}
public PrincipalRequest ownerid() {
return new PrincipalRequest(contextPath.addSegment("ownerid"));
}
public BusinessunitRequest owningbusinessunit() {
return new BusinessunitRequest(contextPath.addSegment("owningbusinessunit"));
}
public TeamRequest owningteam() {
return new TeamRequest(contextPath.addSegment("owningteam"));
}
public SystemuserRequest owninguser() {
return new SystemuserRequest(contextPath.addSegment("owninguser"));
}
public SystemuserRequest createdonbehalfby() {
return new SystemuserRequest(contextPath.addSegment("createdonbehalfby"));
}
public QueueRequest regardingobjectid_queue() {
return new QueueRequest(contextPath.addSegment("regardingobjectid_queue"));
}
public SyncerrorCollectionRequest postFollow_SyncErrors() {
return new SyncerrorCollectionRequest(
contextPath.addSegment("PostFollow_SyncErrors"));
}
public SyncerrorRequest postFollow_SyncErrors(String syncerrorid) {
return new SyncerrorRequest(contextPath.addSegment("PostFollow_SyncErrors").addKeys(new NameValue(syncerrorid.toString())));
}
public ProcesssessionRequest regardingobjectid_processsession() {
return new ProcesssessionRequest(contextPath.addSegment("regardingobjectid_processsession"));
}
public KnowledgearticleRequest regardingobjectid_knowledgearticle() {
return new KnowledgearticleRequest(contextPath.addSegment("regardingobjectid_knowledgearticle"));
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy