All checks were successful
Build and Release / release (push) Successful in 1m30s
17 lines
441 B
Go
17 lines
441 B
Go
package response
|
|
|
|
import (
|
|
"time"
|
|
)
|
|
|
|
type WikiResponse struct {
|
|
ID string `json:"id"`
|
|
Title string `json:"title,omitempty"`
|
|
Slug string `json:"slug,omitempty"`
|
|
Content string `json:"content,omitempty"`
|
|
ProjectID string `json:"project_id"`
|
|
IsDeleted bool `json:"is_deleted,omitempty"`
|
|
CreatedAt *time.Time `json:"created_at,omitempty"`
|
|
UpdatedAt *time.Time `json:"updated_at,omitempty"`
|
|
}
|