Facturacion/daemonService/internal/models/responseControllerModel.go
2025-05-17 11:36:26 -04:00

22 lines
566 B
Go

package models
type APIResponse struct {
Success bool `json:"success"`
Message string `json:"message"`
Data interface{} `json:"data,omitempty"`
Error string `json:"error,omitempty"`
}
type APIResponseCuis struct {
Success bool `json:"success"`
Message string `json:"message"`
Data CuisMinimal `json:"data,omitempty"`
Error string `json:"error,omitempty"`
}
type CuisMinimal struct {
Codigo string `json:"codigo"`
FechaVigencia string `json:"fechaVigencia"`
Transaccion bool `json:"transaccion"`
}