microsoft.dynamics.crm.entity.request.FileattachmentRequest 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.Fileattachment;
import microsoft.dynamics.crm.entity.collection.request.AsyncoperationCollectionRequest;
import microsoft.dynamics.crm.entity.collection.request.SolutionCollectionRequest;
import microsoft.dynamics.crm.entity.collection.request.SyncerrorCollectionRequest;
import microsoft.dynamics.crm.schema.SchemaInfo;
@JsonIgnoreType
public class FileattachmentRequest extends EntityRequest {
public FileattachmentRequest(ContextPath contextPath) {
super(Fileattachment.class, contextPath, SchemaInfo.INSTANCE);
}
public SyncerrorCollectionRequest fileAttachment_SyncErrors() {
return new SyncerrorCollectionRequest(
contextPath.addSegment("FileAttachment_SyncErrors"));
}
public SyncerrorRequest fileAttachment_SyncErrors(String syncerrorid) {
return new SyncerrorRequest(contextPath.addSegment("FileAttachment_SyncErrors").addKeys(new NameValue(syncerrorid.toString())));
}
public SolutionRequest fileAttachment_Solution() {
return new SolutionRequest(contextPath.addSegment("FileAttachment_Solution"));
}
public SolutionCollectionRequest solution_fileid() {
return new SolutionCollectionRequest(
contextPath.addSegment("solution_fileid"));
}
public SolutionRequest solution_fileid(String solutionid) {
return new SolutionRequest(contextPath.addSegment("solution_fileid").addKeys(new NameValue(solutionid.toString())));
}
public StagesolutionuploadRequest objectid_stagesolutionupload() {
return new StagesolutionuploadRequest(contextPath.addSegment("objectid_stagesolutionupload"));
}
public ExportsolutionuploadRequest objectid_exportsolutionupload() {
return new ExportsolutionuploadRequest(contextPath.addSegment("objectid_exportsolutionupload"));
}
public AsyncoperationRequest objectid_asyncoperation() {
return new AsyncoperationRequest(contextPath.addSegment("objectid_asyncoperation"));
}
public AsyncoperationCollectionRequest fileAttachment_AsyncOperation_DataBlobId() {
return new AsyncoperationCollectionRequest(
contextPath.addSegment("FileAttachment_AsyncOperation_DataBlobId"));
}
public AsyncoperationRequest fileAttachment_AsyncOperation_DataBlobId(String asyncoperationid) {
return new AsyncoperationRequest(contextPath.addSegment("FileAttachment_AsyncOperation_DataBlobId").addKeys(new NameValue(asyncoperationid.toString())));
}
public WorkflowlogRequest objectid_workflowlog() {
return new WorkflowlogRequest(contextPath.addSegment("objectid_workflowlog"));
}
public FlowsessionRequest objectid_flowsession() {
return new FlowsessionRequest(contextPath.addSegment("objectid_flowsession"));
}
public WorkflowbinaryRequest objectid_workflowbinary() {
return new WorkflowbinaryRequest(contextPath.addSegment("objectid_workflowbinary"));
}
public Msdyn_knowledgearticleimageRequest objectid_msdyn_knowledgearticleimage() {
return new Msdyn_knowledgearticleimageRequest(contextPath.addSegment("objectid_msdyn_knowledgearticleimage"));
}
public Msdyn_aiconfigurationRequest objectid_msdyn_aiconfiguration() {
return new Msdyn_aiconfigurationRequest(contextPath.addSegment("objectid_msdyn_aiconfiguration"));
}
public Msdyn_aibfileRequest objectid_msdyn_aibfile() {
return new Msdyn_aibfileRequest(contextPath.addSegment("objectid_msdyn_aibfile"));
}
public CascadegrantrevokeaccessrecordstrackerRequest objectid_cascadegrantrevokeaccessrecordstracker() {
return new CascadegrantrevokeaccessrecordstrackerRequest(contextPath.addSegment("objectid_cascadegrantrevokeaccessrecordstracker"));
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy