microsoft.dynamics.crm.entity.request.SocialprofileRequest 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.Socialprofile;
import microsoft.dynamics.crm.entity.collection.request.AsyncoperationCollectionRequest;
import microsoft.dynamics.crm.entity.collection.request.ConnectionCollectionRequest;
import microsoft.dynamics.crm.entity.collection.request.DuplicaterecordCollectionRequest;
import microsoft.dynamics.crm.entity.collection.request.PrincipalobjectattributeaccessCollectionRequest;
import microsoft.dynamics.crm.entity.collection.request.ProcesssessionCollectionRequest;
import microsoft.dynamics.crm.entity.collection.request.SocialactivityCollectionRequest;
import microsoft.dynamics.crm.entity.collection.request.SyncerrorCollectionRequest;
import microsoft.dynamics.crm.schema.SchemaInfo;
@JsonIgnoreType
public class SocialprofileRequest extends EntityRequest {
public SocialprofileRequest(ContextPath contextPath) {
super(Socialprofile.class, contextPath, SchemaInfo.INSTANCE);
}
public DuplicaterecordCollectionRequest socialProfile_DuplicateBaseRecord() {
return new DuplicaterecordCollectionRequest(
contextPath.addSegment("SocialProfile_DuplicateBaseRecord"));
}
public DuplicaterecordRequest socialProfile_DuplicateBaseRecord(String duplicateid) {
return new DuplicaterecordRequest(contextPath.addSegment("SocialProfile_DuplicateBaseRecord").addKeys(new NameValue(duplicateid.toString())));
}
public AsyncoperationCollectionRequest socialProfile_AsyncOperations() {
return new AsyncoperationCollectionRequest(
contextPath.addSegment("SocialProfile_AsyncOperations"));
}
public AsyncoperationRequest socialProfile_AsyncOperations(String asyncoperationid) {
return new AsyncoperationRequest(contextPath.addSegment("SocialProfile_AsyncOperations").addKeys(new NameValue(asyncoperationid.toString())));
}
public SystemuserRequest modifiedonbehalfby() {
return new SystemuserRequest(contextPath.addSegment("modifiedonbehalfby"));
}
public BusinessunitRequest owningbusinessunit() {
return new BusinessunitRequest(contextPath.addSegment("owningbusinessunit"));
}
public ConnectionCollectionRequest socialprofile_connections1() {
return new ConnectionCollectionRequest(
contextPath.addSegment("socialprofile_connections1"));
}
public ConnectionRequest socialprofile_connections1(String connectionid) {
return new ConnectionRequest(contextPath.addSegment("socialprofile_connections1").addKeys(new NameValue(connectionid.toString())));
}
public ConnectionCollectionRequest socialprofile_connections2() {
return new ConnectionCollectionRequest(
contextPath.addSegment("socialprofile_connections2"));
}
public ConnectionRequest socialprofile_connections2(String connectionid) {
return new ConnectionRequest(contextPath.addSegment("socialprofile_connections2").addKeys(new NameValue(connectionid.toString())));
}
public SystemuserRequest owninguser() {
return new SystemuserRequest(contextPath.addSegment("owninguser"));
}
public ContactRequest customerid_contact() {
return new ContactRequest(contextPath.addSegment("customerid_contact"));
}
public SyncerrorCollectionRequest socialProfile_SyncErrors() {
return new SyncerrorCollectionRequest(
contextPath.addSegment("SocialProfile_SyncErrors"));
}
public SyncerrorRequest socialProfile_SyncErrors(String syncerrorid) {
return new SyncerrorRequest(contextPath.addSegment("SocialProfile_SyncErrors").addKeys(new NameValue(syncerrorid.toString())));
}
public PrincipalobjectattributeaccessCollectionRequest socialprofile_principalobjectattributeaccess() {
return new PrincipalobjectattributeaccessCollectionRequest(
contextPath.addSegment("socialprofile_principalobjectattributeaccess"));
}
public PrincipalobjectattributeaccessRequest socialprofile_principalobjectattributeaccess(String principalobjectattributeaccessid) {
return new PrincipalobjectattributeaccessRequest(contextPath.addSegment("socialprofile_principalobjectattributeaccess").addKeys(new NameValue(principalobjectattributeaccessid.toString())));
}
public SocialactivityCollectionRequest socialprofile_SocialActivities() {
return new SocialactivityCollectionRequest(
contextPath.addSegment("Socialprofile_SocialActivities"));
}
public SocialactivityRequest socialprofile_SocialActivities(String activityid) {
return new SocialactivityRequest(contextPath.addSegment("Socialprofile_SocialActivities").addKeys(new NameValue(activityid.toString())));
}
public PrincipalRequest ownerid() {
return new PrincipalRequest(contextPath.addSegment("ownerid"));
}
public TransactioncurrencyRequest transactioncurrencyid() {
return new TransactioncurrencyRequest(contextPath.addSegment("transactioncurrencyid"));
}
public ProcesssessionCollectionRequest socialProfile_ProcessSessions() {
return new ProcesssessionCollectionRequest(
contextPath.addSegment("SocialProfile_ProcessSessions"));
}
public ProcesssessionRequest socialProfile_ProcessSessions(String processsessionid) {
return new ProcesssessionRequest(contextPath.addSegment("SocialProfile_ProcessSessions").addKeys(new NameValue(processsessionid.toString())));
}
public DuplicaterecordCollectionRequest socialProfile_DuplicateMatchingRecord() {
return new DuplicaterecordCollectionRequest(
contextPath.addSegment("SocialProfile_DuplicateMatchingRecord"));
}
public DuplicaterecordRequest socialProfile_DuplicateMatchingRecord(String duplicateid) {
return new DuplicaterecordRequest(contextPath.addSegment("SocialProfile_DuplicateMatchingRecord").addKeys(new NameValue(duplicateid.toString())));
}
public AccountRequest customerid_account() {
return new AccountRequest(contextPath.addSegment("customerid_account"));
}
public SystemuserRequest createdonbehalfby() {
return new SystemuserRequest(contextPath.addSegment("createdonbehalfby"));
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy