microsoft.dynamics.crm.entity.request.PostRequest 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.Post;
import microsoft.dynamics.crm.entity.collection.request.AsyncoperationCollectionRequest;
import microsoft.dynamics.crm.entity.collection.request.BulkdeletefailureCollectionRequest;
import microsoft.dynamics.crm.entity.collection.request.PostcommentCollectionRequest;
import microsoft.dynamics.crm.entity.collection.request.PostlikeCollectionRequest;
import microsoft.dynamics.crm.schema.SchemaInfo;
@JsonIgnoreType
public class PostRequest extends EntityRequest {
public PostRequest(ContextPath contextPath) {
super(Post.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 AsyncoperationCollectionRequest post_AsyncOperations() {
return new AsyncoperationCollectionRequest(
contextPath.addSegment("post_AsyncOperations"));
}
public AsyncoperationRequest post_AsyncOperations(String asyncoperationid) {
return new AsyncoperationRequest(contextPath.addSegment("post_AsyncOperations").addKeys(new NameValue(asyncoperationid.toString())));
}
public BulkdeletefailureCollectionRequest post_BulkDeleteFailures() {
return new BulkdeletefailureCollectionRequest(
contextPath.addSegment("post_BulkDeleteFailures"));
}
public BulkdeletefailureRequest post_BulkDeleteFailures(String bulkdeletefailureid) {
return new BulkdeletefailureRequest(contextPath.addSegment("post_BulkDeleteFailures").addKeys(new NameValue(bulkdeletefailureid.toString())));
}
public PostregardingRequest postregardingid() {
return new PostregardingRequest(contextPath.addSegment("postregardingid"));
}
public OrganizationRequest organizationid() {
return new OrganizationRequest(contextPath.addSegment("organizationid"));
}
public PostcommentCollectionRequest post_Comments() {
return new PostcommentCollectionRequest(
contextPath.addSegment("Post_Comments"));
}
public PostcommentRequest post_Comments(String postcommentid) {
return new PostcommentRequest(contextPath.addSegment("Post_Comments").addKeys(new NameValue(postcommentid.toString())));
}
public PostlikeCollectionRequest post_Likes() {
return new PostlikeCollectionRequest(
contextPath.addSegment("Post_Likes"));
}
public PostlikeRequest post_Likes(String postlikeid) {
return new PostlikeRequest(contextPath.addSegment("Post_Likes").addKeys(new NameValue(postlikeid.toString())));
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy