001
002package com.commercetools.history.client;
003
004import io.vrap.rmf.base.client.ApiHttpClient;
005import io.vrap.rmf.base.client.utils.Generated;
006
007@Generated(value = "io.vrap.rmf.codegen.rendering.CoreCodeGenerator", comments = "https://github.com/commercetools/rmf-codegen")
008public class ByProjectKeyByResourceTypeByIDRequestBuilder {
009
010    private final ApiHttpClient apiHttpClient;
011    private final String projectKey;
012    private final String resourceType;
013    private final String ID;
014
015    public ByProjectKeyByResourceTypeByIDRequestBuilder(final ApiHttpClient apiHttpClient, final String projectKey,
016            final String resourceType, final String ID) {
017        this.apiHttpClient = apiHttpClient;
018        this.projectKey = projectKey;
019        this.resourceType = resourceType;
020        this.ID = ID;
021    }
022
023    public ByProjectKeyByResourceTypeByIDGet get() {
024        return new ByProjectKeyByResourceTypeByIDGet(apiHttpClient, projectKey, resourceType, ID);
025    }
026
027}