package
Version:
v0.0.0-...-0b0b9b4
Opens a new window with list of versions in this module.
Published: Nov 23, 2022
License: MIT
Opens a new window with license information.
Imports: 0
Opens a new window with list of imports.
Imported by: 0
Opens a new window with list of known importers.
Documentation
¶
type TodoRequest struct {
Id string `json:"id"`
Activity string `json:"activity" validate:"required"`
Priority string `json:"priority" validate:"required"`
}
type TodoResponse struct {
Id string `json:"id"`
Activity string `json:"activity"`
Priority string `json:"priority"`
IsDone bool `json:"is_done"`
}
type TodoUpdateRequest struct {
Activity string `json:"activity"`
Priority string `json:"priority"`
IsDone *bool `json:"is_done"`
}
Source Files
¶
Click to show internal directories.
Click to hide internal directories.