mirror of
https://github.com/GlueOps/autoglue.git
synced 2026-02-13 04:40:05 +01:00
22 lines
364 B
Go
22 lines
364 B
Go
package dto
|
|
|
|
import (
|
|
"github.com/glueops/autoglue/internal/common"
|
|
)
|
|
|
|
type LabelResponse struct {
|
|
common.AuditFields
|
|
Key string `json:"key"`
|
|
Value string `json:"value"`
|
|
}
|
|
|
|
type CreateLabelRequest struct {
|
|
Key string `json:"key"`
|
|
Value string `json:"value"`
|
|
}
|
|
|
|
type UpdateLabelRequest struct {
|
|
Key *string `json:"key"`
|
|
Value *string `json:"value"`
|
|
}
|