microsoft.dynamics.crm.entity.request.RecurrenceruleRequest 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.Recurrencerule;
import microsoft.dynamics.crm.entity.collection.request.RecurringappointmentmasterCollectionRequest;
import microsoft.dynamics.crm.schema.SchemaInfo;
@JsonIgnoreType
public class RecurrenceruleRequest extends EntityRequest {
public RecurrenceruleRequest(ContextPath contextPath) {
super(Recurrencerule.class, contextPath, SchemaInfo.INSTANCE);
}
public BusinessunitRequest owningbusinessunit() {
return new BusinessunitRequest(contextPath.addSegment("owningbusinessunit"));
}
public SystemuserRequest createdonbehalfby() {
return new SystemuserRequest(contextPath.addSegment("createdonbehalfby"));
}
public PrincipalRequest ownerid() {
return new PrincipalRequest(contextPath.addSegment("ownerid"));
}
public SystemuserRequest modifiedonbehalfby() {
return new SystemuserRequest(contextPath.addSegment("modifiedonbehalfby"));
}
public SystemuserRequest modifiedby() {
return new SystemuserRequest(contextPath.addSegment("modifiedby"));
}
public SystemuserRequest createdby() {
return new SystemuserRequest(contextPath.addSegment("createdby"));
}
public RecurringappointmentmasterCollectionRequest recurrencerule_recurringappointmentmaster() {
return new RecurringappointmentmasterCollectionRequest(
contextPath.addSegment("recurrencerule_recurringappointmentmaster"));
}
public RecurringappointmentmasterRequest recurrencerule_recurringappointmentmaster(String activityid) {
return new RecurringappointmentmasterRequest(contextPath.addSegment("recurrencerule_recurringappointmentmaster").addKeys(new NameValue(activityid.toString())));
}
public ActivitypointerRequest objectid() {
return new ActivitypointerRequest(contextPath.addSegment("objectid"));
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy