package http_model type SetInvoiceInfoRequest struct { EnterpriseName string `json:"enterprise_name"` EnterpriseTax string `json:"enterprise_tax"` Address string `json:"address"` Phone string `json:"phone"` BankName string `json:"bank_name"` BankAccount string `json:"bank_account"` Project string `json:"project"` } func NewSetInvoiceInfoRequest() *SetInvoiceInfoRequest { return new(SetInvoiceInfoRequest) } func NewSetInvoiceInfoResponse() *CommonResponse { return new(CommonResponse) }