com.commercetools.graphql.api.client.TaxCategoryProjection Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of commercetools-graphql-api Show documentation
Show all versions of commercetools-graphql-api Show documentation
The e-commerce SDK from commercetools Composable Commerce for Java
package com.commercetools.graphql.api.client;
import com.netflix.graphql.dgs.client.codegen.BaseSubProjectionNode;
public class TaxCategoryProjection, ROOT extends BaseSubProjectionNode, ?>> extends BaseSubProjectionNode {
public TaxCategoryProjection(PARENT parent, ROOT root) {
super(parent, root, java.util.Optional.of("TaxCategory"));
}
public TaxCategoryProjection __typename() {
getFields().put("__typename", null);
return this;
}
public TaxRateProjection, ROOT> rates() {
TaxRateProjection, ROOT> projection = new TaxRateProjection<>(this, getRoot());
getFields().put("rates", projection);
return projection;
}
public InitiatorProjection, ROOT> createdBy() {
InitiatorProjection, ROOT> projection = new InitiatorProjection<>(this, getRoot());
getFields().put("createdBy", projection);
return projection;
}
public InitiatorProjection, ROOT> lastModifiedBy() {
InitiatorProjection, ROOT> projection = new InitiatorProjection<>(this, getRoot());
getFields().put("lastModifiedBy", projection);
return projection;
}
public TaxCategoryProjection name() {
getFields().put("name", null);
return this;
}
public TaxCategoryProjection description() {
getFields().put("description", null);
return this;
}
public TaxCategoryProjection key() {
getFields().put("key", null);
return this;
}
public TaxCategoryProjection id() {
getFields().put("id", null);
return this;
}
public TaxCategoryProjection version() {
getFields().put("version", null);
return this;
}
public TaxCategoryProjection createdAt() {
getFields().put("createdAt", null);
return this;
}
public TaxCategoryProjection lastModifiedAt() {
getFields().put("lastModifiedAt", null);
return this;
}
}