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