* INFRA-3664 : Make get users in conversation api more performant * INFRA-3664 : Add apis for incident user sync and get users in incident performance improvements * INFRA-3664 : Self review * INFRA-3664 : Add migration script * INFRA-3664 : Review comments * INFRA-3664 : Constant chanes * INFRA-3664 : Add rate limit constants * INFRA-3664 : Add rate limit constants * INFRA-3664 : Fix failing tests * INFRA-3664 : Add UT's
15 lines
342 B
Go
15 lines
342 B
Go
package requestStatus
|
|
|
|
import (
|
|
"github.com/google/uuid"
|
|
"gorm.io/datatypes"
|
|
)
|
|
|
|
type RequestStatusDTO struct {
|
|
ID uint `json:"id"`
|
|
RequestID uuid.UUID `json:"request_id"`
|
|
RequestType string `json:"request_type"`
|
|
Status string `json:"status"`
|
|
Message datatypes.JSON `json:"message"`
|
|
}
|