microsoft.dynamics.crm.entity.request.PostregardingRequest 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.Postregarding;
import microsoft.dynamics.crm.entity.collection.request.PostCollectionRequest;
import microsoft.dynamics.crm.schema.SchemaInfo;
@JsonIgnoreType
public class PostregardingRequest extends EntityRequest {
public PostregardingRequest(ContextPath contextPath) {
super(Postregarding.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 PostCollectionRequest post_PostRegardings() {
return new PostCollectionRequest(
contextPath.addSegment("post_PostRegardings"));
}
public PostRequest post_PostRegardings(String postid) {
return new PostRequest(contextPath.addSegment("post_PostRegardings").addKeys(new NameValue(postid.toString())));
}
public AccountRequest regardingobjectid_account() {
return new AccountRequest(contextPath.addSegment("regardingobjectid_account"));
}
public SystemuserRequest regardingobjectid_systemuser() {
return new SystemuserRequest(contextPath.addSegment("regardingobjectid_systemuser"));
}
public BusinessunitRequest regardingobjectowningbusinessunit() {
return new BusinessunitRequest(contextPath.addSegment("regardingobjectowningbusinessunit"));
}
public ContactRequest regardingobjectid_contact() {
return new ContactRequest(contextPath.addSegment("regardingobjectid_contact"));
}
public TeamRequest regardingobjectid_team() {
return new TeamRequest(contextPath.addSegment("regardingobjectid_team"));
}
public KnowledgearticleRequest regardingobjectid_knowledgearticle() {
return new KnowledgearticleRequest(contextPath.addSegment("regardingobjectid_knowledgearticle"));
}
public QueueRequest regardingobjectid_queue() {
return new QueueRequest(contextPath.addSegment("regardingobjectid_queue"));
}
public ProcesssessionRequest regardingobjectid_processsession() {
return new ProcesssessionRequest(contextPath.addSegment("regardingobjectid_processsession"));
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy