github.com/ryicoh/apery-graphql@v0.0.0-20210919090814-a8c219904bee/pkg/models_gen.go (about)

     1  // Code generated by github.com/99designs/gqlgen, DO NOT EDIT.
     2  
     3  package pkg
     4  
     5  type EvaluateInput struct {
     6  	Sfen          string   `json:"sfen"`
     7  	Moves         []string `json:"moves"`
     8  	TimeoutSecond int      `json:"timeoutSecond"`
     9  }
    10  
    11  type EvaluateOutput struct {
    12  	Value    int      `json:"value"`
    13  	Nodes    int      `json:"nodes"`
    14  	Depth    int      `json:"depth"`
    15  	Bestmove string   `json:"bestmove"`
    16  	Pv       []string `json:"pv"`
    17  }