File size: 215 Bytes
2939a15
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
from pydantic import BaseModel
from typing import List


class PredictionRequest(BaseModel):
    invoiceId: List[int]
    country: str


class PredictionResponse(BaseModel):
    invoiceId: int
    prediction: float