microsoft.dynamics.crm.entity.request.AttachmentRequest 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.Attachment;
import microsoft.dynamics.crm.entity.collection.request.ActivitymimeattachmentCollectionRequest;
import microsoft.dynamics.crm.entity.collection.request.SyncerrorCollectionRequest;
import microsoft.dynamics.crm.schema.SchemaInfo;
@JsonIgnoreType
public class AttachmentRequest extends EntityRequest {
public AttachmentRequest(ContextPath contextPath) {
super(Attachment.class, contextPath, SchemaInfo.INSTANCE);
}
public SyncerrorCollectionRequest attachment_SyncErrors() {
return new SyncerrorCollectionRequest(
contextPath.addSegment("Attachment_SyncErrors"));
}
public SyncerrorRequest attachment_SyncErrors(String syncerrorid) {
return new SyncerrorRequest(contextPath.addSegment("Attachment_SyncErrors").addKeys(new NameValue(syncerrorid.toString())));
}
public ActivitymimeattachmentCollectionRequest attachment_activity_mime_attachments() {
return new ActivitymimeattachmentCollectionRequest(
contextPath.addSegment("attachment_activity_mime_attachments"));
}
public ActivitymimeattachmentRequest attachment_activity_mime_attachments(String activitymimeattachmentid) {
return new ActivitymimeattachmentRequest(contextPath.addSegment("attachment_activity_mime_attachments").addKeys(new NameValue(activitymimeattachmentid.toString())));
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy