mirror of
https://github.com/antlabs/tostruct.git
synced 2026-04-22 23:57:05 +08:00
7 lines
156 B
Plaintext
7 lines
156 B
Plaintext
type reqName struct {
|
|
Bool *bool `json:"bool"`
|
|
Float64 *float64 `json:"float64"`
|
|
Int *int `json:"int"`
|
|
String *string `json:"string"`
|
|
}
|