com.commercetools.graphql.api.client.SearchIndexingConfigurationValuesProjection 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 SearchIndexingConfigurationValuesProjection, ROOT extends BaseSubProjectionNode, ?>> extends BaseSubProjectionNode {
public SearchIndexingConfigurationValuesProjection(PARENT parent, ROOT root) {
super(parent, root, java.util.Optional.of("SearchIndexingConfigurationValues"));
}
public SearchIndexingConfigurationValuesProjection __typename() {
getFields().put("__typename", null);
return this;
}
public SearchIndexingStatusProjection, ROOT> status(
) {
SearchIndexingStatusProjection, ROOT> projection = new SearchIndexingStatusProjection<>(this, getRoot());
getFields().put("status", projection);
return projection;
}
public InitiatorProjection, ROOT> lastModifiedBy(
) {
InitiatorProjection, ROOT> projection = new InitiatorProjection<>(this, getRoot());
getFields().put("lastModifiedBy", projection);
return projection;
}
public SearchIndexingConfigurationValuesProjection lastModifiedAt() {
getFields().put("lastModifiedAt", null);
return this;
}
}