package contacts import "time" type Status string const ( StatusActive Status = "active" StatusArchived Status = "archived" ) type Contact struct { ID string TenantID string AccountID *string Name string Email *string Phone *string RoleTitle *string Status Status CreatedAt time.Time UpdatedAt time.Time }