package dto import ( "encoding/json" "kra/internal/biz/system" ) type IntegrationConfigRequest struct { Enabled bool `json:"enabled"` Config json.RawMessage `json:"config"` } type IntegrationConfigResponse struct { Kind string `json:"kind"` Provider string `json:"provider"` Name string `json:"name"` Description string `json:"description,omitempty"` Enabled bool `json:"enabled"` Configured bool `json:"configured"` Config json.RawMessage `json:"config"` Fields []system.IntegrationConfigField `json:"fields"` }