package models type GitHubLeadResult struct { Repository string `json:"repository"` Author string `json:"author"` Email string `json:"email"` Commit string `json:"commit"` Date string `json:"date"` Message string `json:"message"` } type GitHubLeadsStreamResponse struct { Lead GitHubLeadResult `json:"lead"` }