mirror of
https://github.com/GlueOps/autoglue.git
synced 2026-02-13 12:50:05 +01:00
20 lines
353 B
Go
20 lines
353 B
Go
package dto
|
|
|
|
import "github.com/google/uuid"
|
|
|
|
type LabelResponse struct {
|
|
ID uuid.UUID `json:"id"`
|
|
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"`
|
|
}
|