20 lines
417 B
Go
20 lines
417 B
Go
package deals
|
|
|
|
import "time"
|
|
|
|
type Deal struct {
|
|
ID string
|
|
TenantID string
|
|
Title string
|
|
AccountID *string
|
|
ContactID *string
|
|
PipelineID string
|
|
StageID string
|
|
Value Money
|
|
Status Status
|
|
Source *string
|
|
ExpectedClose *time.Time
|
|
ClosedAt *time.Time
|
|
CreatedAt time.Time
|
|
UpdatedAt time.Time
|
|
}
|