* INFRA-3703 : Houston side changes to accomodate QA use case * INFRA-3703 : UT failure fix * INFRA-3703 : Minor changes * INFRA-3703 : Unique constraint * INFRA-3703 : Edit migration file * INFRA-3703 : PR review comments and UT's * INFRA-3703 : Channel name resolution
18 lines
459 B
Go
18 lines
459 B
Go
package incidentTeamTagValue
|
|
|
|
import (
|
|
"houston/model/incidentTeam"
|
|
"houston/model/tagValue"
|
|
"time"
|
|
)
|
|
|
|
type IncidentTeamTagValueDTO struct {
|
|
ID uint `json:"id"`
|
|
IncidentTeamID uint `json:"incident_team_id"`
|
|
TagValueID uint `json:"tag_value_id"`
|
|
CreatedAt time.Time `json:"created_at"`
|
|
|
|
IncidentTeam incidentTeam.IncidentTeamDTO `json:"incident_team"`
|
|
TagValue tagValue.TagValueDTO `json:"tag_value"`
|
|
}
|