19 lines
374 B
Go
19 lines
374 B
Go
package activities
|
|
|
|
import "time"
|
|
|
|
type Activity struct {
|
|
ID string
|
|
TenantID string
|
|
Type Type
|
|
DealID *string
|
|
AccountID *string
|
|
ContactID *string
|
|
Title string
|
|
DueAt *time.Time
|
|
Status Status
|
|
AssignedUserID string
|
|
CompletedAt *time.Time
|
|
CreatedAt time.Time
|
|
UpdatedAt time.Time
|
|
}
|