All checks were successful
Build and Release / release (push) Successful in 1m14s
16 lines
506 B
Go
16 lines
506 B
Go
package response
|
|
|
|
import "time"
|
|
|
|
type EntityResponse struct {
|
|
ID string `json:"id"`
|
|
Name string `json:"name"`
|
|
Slug string `json:"slug,omitempty"`
|
|
Description string `json:"description,omitempty"`
|
|
ProjectID string `json:"project_id"`
|
|
Status *int16 `json:"status,omitempty"`
|
|
IsDeleted bool `json:"is_deleted,omitempty"`
|
|
CreatedAt *time.Time `json:"created_at,omitempty"`
|
|
UpdatedAt *time.Time `json:"updated_at,omitempty"`
|
|
}
|