package models import "io" type TemplateGenData struct { Email string `json:"email"` Data Data `json:"data"` File io.Reader `json:"file"` } type Data struct { TaxNumber string `json:"taxnumber"` History *ReportHistory `json:"history"` }