package requests type CreateInvoiceConfigRequest struct { Name string `json:"name" binding:"required"` Type string `json:"type" binding:"required"` Description string `json:"description"` IsActive bool `json:"isActive"` } type UpdateInvoiceConfigRequest struct { Name string `json:"name"` Type string `json:"type"` Description string `json:"description"` IsActive *bool `json:"isActive"` }