Closes #8 Reviewed-on: phoenix/textsender-models#9 Co-authored-by: phoenix <kundeng00@pm.me> Co-committed-by: phoenix <kundeng00@pm.me>
16 lines
356 B
Go
16 lines
356 B
Go
package scheduling
|
|
|
|
import (
|
|
"time"
|
|
|
|
"github.com/google/uuid"
|
|
)
|
|
|
|
type ScheduledMessageEvent struct {
|
|
Id uuid.UUID `json:"id"`
|
|
RecipientId uuid.UUID `json:"recipient_id"`
|
|
MessageId uuid.UUID `json:"message_id"`
|
|
ScheduledMessageId uuid.UUID `json:"scheduled_message_id"`
|
|
Created time.Time `json:"created"`
|
|
}
|