com.commercetools.graphql.api.client.BusinessUnitCreatedFragmentProjection 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;
import java.lang.Override;
import java.lang.String;
public class BusinessUnitCreatedFragmentProjection, ROOT extends BaseSubProjectionNode, ?>> extends BaseSubProjectionNode {
{
getFields().put("__typename", null);
}
public BusinessUnitCreatedFragmentProjection(PARENT parent, ROOT root) {
super(parent, root, java.util.Optional.of("BusinessUnitCreated"));
}
public BusinessUnitCreatedFragmentProjection __typename() {
getFields().put("__typename", null);
return this;
}
public BusinessUnitProjection, ROOT> businessUnit(
) {
BusinessUnitProjection, ROOT> projection = new BusinessUnitProjection<>(this, getRoot());
getFields().put("businessUnit", projection);
return projection;
}
public BusinessUnitCreatedFragmentProjection type() {
getFields().put("type", null);
return this;
}
@Override
public String toString() {
StringBuilder builder = new StringBuilder();
builder.append("... on BusinessUnitCreated {");
getFields().forEach((k, v) -> {
builder.append(" ").append(k);
if(v != null) {
builder.append(" ").append(v.toString());
}
});
builder.append("}");
return builder.toString();
}
}