microsoft.dynamics.crm.entity.request.CustomeraddressRequest 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.Customeraddress;
import microsoft.dynamics.crm.entity.collection.request.AsyncoperationCollectionRequest;
import microsoft.dynamics.crm.entity.collection.request.BulkdeletefailureCollectionRequest;
import microsoft.dynamics.crm.entity.collection.request.PrincipalobjectattributeaccessCollectionRequest;
import microsoft.dynamics.crm.entity.collection.request.ProcesssessionCollectionRequest;
import microsoft.dynamics.crm.entity.collection.request.SyncerrorCollectionRequest;
import microsoft.dynamics.crm.schema.SchemaInfo;
@JsonIgnoreType
public class CustomeraddressRequest extends EntityRequest {
public CustomeraddressRequest(ContextPath contextPath) {
super(Customeraddress.class, contextPath, SchemaInfo.INSTANCE);
}
public BulkdeletefailureCollectionRequest customerAddress_BulkDeleteFailures() {
return new BulkdeletefailureCollectionRequest(
contextPath.addSegment("CustomerAddress_BulkDeleteFailures"));
}
public BulkdeletefailureRequest customerAddress_BulkDeleteFailures(String bulkdeletefailureid) {
return new BulkdeletefailureRequest(contextPath.addSegment("CustomerAddress_BulkDeleteFailures").addKeys(new NameValue(bulkdeletefailureid.toString())));
}
public SystemuserRequest modifiedonbehalfby() {
return new SystemuserRequest(contextPath.addSegment("modifiedonbehalfby"));
}
public SystemuserRequest createdby() {
return new SystemuserRequest(contextPath.addSegment("createdby"));
}
public SystemuserRequest createdonbehalfby() {
return new SystemuserRequest(contextPath.addSegment("createdonbehalfby"));
}
public TransactioncurrencyRequest transactioncurrencyid() {
return new TransactioncurrencyRequest(contextPath.addSegment("transactioncurrencyid"));
}
public ProcesssessionCollectionRequest customerAddress_ProcessSessions() {
return new ProcesssessionCollectionRequest(
contextPath.addSegment("CustomerAddress_ProcessSessions"));
}
public ProcesssessionRequest customerAddress_ProcessSessions(String processsessionid) {
return new ProcesssessionRequest(contextPath.addSegment("CustomerAddress_ProcessSessions").addKeys(new NameValue(processsessionid.toString())));
}
public AccountRequest parentid_account() {
return new AccountRequest(contextPath.addSegment("parentid_account"));
}
public ContactRequest parentid_contact() {
return new ContactRequest(contextPath.addSegment("parentid_contact"));
}
public SystemuserRequest modifiedby() {
return new SystemuserRequest(contextPath.addSegment("modifiedby"));
}
public SyncerrorCollectionRequest customerAddress_SyncErrors() {
return new SyncerrorCollectionRequest(
contextPath.addSegment("CustomerAddress_SyncErrors"));
}
public SyncerrorRequest customerAddress_SyncErrors(String syncerrorid) {
return new SyncerrorRequest(contextPath.addSegment("CustomerAddress_SyncErrors").addKeys(new NameValue(syncerrorid.toString())));
}
public PrincipalobjectattributeaccessCollectionRequest customeraddress_principalobjectattributeaccess() {
return new PrincipalobjectattributeaccessCollectionRequest(
contextPath.addSegment("customeraddress_principalobjectattributeaccess"));
}
public PrincipalobjectattributeaccessRequest customeraddress_principalobjectattributeaccess(String principalobjectattributeaccessid) {
return new PrincipalobjectattributeaccessRequest(contextPath.addSegment("customeraddress_principalobjectattributeaccess").addKeys(new NameValue(principalobjectattributeaccessid.toString())));
}
public AsyncoperationCollectionRequest customerAddress_AsyncOperations() {
return new AsyncoperationCollectionRequest(
contextPath.addSegment("CustomerAddress_AsyncOperations"));
}
public AsyncoperationRequest customerAddress_AsyncOperations(String asyncoperationid) {
return new AsyncoperationRequest(contextPath.addSegment("CustomerAddress_AsyncOperations").addKeys(new NameValue(asyncoperationid.toString())));
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy