All Downloads are FREE. Search and download functionalities are using the official Maven repository.

microsoft.dynamics.crm.entity.request.RecommendeddocumentRequest Maven / Gradle / Ivy

There is a newer version: 0.2.2
Show newest version
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 microsoft.dynamics.crm.entity.Recommendeddocument;
import microsoft.dynamics.crm.schema.SchemaInfo;

@JsonIgnoreType
public class RecommendeddocumentRequest extends EntityRequest {

    public RecommendeddocumentRequest(ContextPath contextPath) {
        super(Recommendeddocument.class, contextPath, SchemaInfo.INSTANCE);
    }

    public SystemuserRequest createdbyname() {
        return new SystemuserRequest(contextPath.addSegment("createdbyname"));
    }

    public SystemuserRequest createdonbehalfbyname() {
        return new SystemuserRequest(contextPath.addSegment("createdonbehalfbyname"));
    }

    public SystemuserRequest modifiedbyname() {
        return new SystemuserRequest(contextPath.addSegment("modifiedbyname"));
    }

    public SystemuserRequest modifiedonbehalfbyname() {
        return new SystemuserRequest(contextPath.addSegment("modifiedonbehalfbyname"));
    }

    public OrganizationRequest organizationid() {
        return new OrganizationRequest(contextPath.addSegment("organizationid"));
    }

    public TransactioncurrencyRequest transactioncurrencyidname() {
        return new TransactioncurrencyRequest(contextPath.addSegment("transactioncurrencyidname"));
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy