mirror of
https://github.com/GlueOps/autoglue.git
synced 2026-02-13 21:00:06 +01:00
20 lines
394 B
Go
20 lines
394 B
Go
package dto
|
|
|
|
import "github.com/glueops/autoglue/internal/common"
|
|
|
|
type AnnotationResponse struct {
|
|
common.AuditFields
|
|
Key string `json:"key"`
|
|
Value string `json:"value"`
|
|
}
|
|
|
|
type CreateAnnotationRequest struct {
|
|
Key string `json:"key"`
|
|
Value string `json:"value"`
|
|
}
|
|
|
|
type UpdateAnnotationRequest struct {
|
|
Key *string `json:"key,omitempty"`
|
|
Value *string `json:"value,omitempty"`
|
|
}
|