com.commercetools.graphql.api.client.UpdateCustomerGroupProjectionRoot 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 UpdateCustomerGroupProjectionRoot, ROOT extends BaseSubProjectionNode, ?>> extends BaseSubProjectionNode {
public UpdateCustomerGroupProjectionRoot() {
super(null, null, java.util.Optional.of("CustomerGroup"));
}
public UpdateCustomerGroupProjectionRoot __typename() {
getFields().put("__typename", null);
return this;
}
public CustomFieldsTypeProjection, UpdateCustomerGroupProjectionRoot> custom(
) {
CustomFieldsTypeProjection, UpdateCustomerGroupProjectionRoot> projection = new CustomFieldsTypeProjection<>(this, this);
getFields().put("custom", projection);
return projection;
}
public InitiatorProjection, UpdateCustomerGroupProjectionRoot> createdBy(
) {
InitiatorProjection, UpdateCustomerGroupProjectionRoot> projection = new InitiatorProjection<>(this, this);
getFields().put("createdBy", projection);
return projection;
}
public InitiatorProjection, UpdateCustomerGroupProjectionRoot> lastModifiedBy(
) {
InitiatorProjection, UpdateCustomerGroupProjectionRoot> projection = new InitiatorProjection<>(this, this);
getFields().put("lastModifiedBy", projection);
return projection;
}
public UpdateCustomerGroupProjectionRoot id() {
getFields().put("id", null);
return this;
}
public UpdateCustomerGroupProjectionRoot version() {
getFields().put("version", null);
return this;
}
public UpdateCustomerGroupProjectionRoot name() {
getFields().put("name", null);
return this;
}
public UpdateCustomerGroupProjectionRoot key() {
getFields().put("key", null);
return this;
}
public UpdateCustomerGroupProjectionRoot createdAt() {
getFields().put("createdAt", null);
return this;
}
public UpdateCustomerGroupProjectionRoot lastModifiedAt() {
getFields().put("lastModifiedAt", null);
return this;
}
}