All Downloads are FREE. Search and download functionalities are using the official Maven repository.

graphql.kickstart.autoconfigure.editor.playground.properties.settings.PlaygroundSchemaSettings Maven / Gradle / Ivy

package graphql.kickstart.autoconfigure.editor.playground.properties.settings;

import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.annotation.JsonUnwrapped;
import lombok.Data;
import org.springframework.boot.context.properties.NestedConfigurationProperty;

@Data
@JsonInclude(JsonInclude.Include.NON_NULL)
public class PlaygroundSchemaSettings {

  private Boolean disableComments;

  @NestedConfigurationProperty
  @JsonUnwrapped(prefix = "polling.")
  private PlaygroundSchemaPollingSettings polling;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy