File size: 686 Bytes
0d99179
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
from __future__ import annotations

from datetime import date, time

from pydantic import BaseModel, Field


class InformationExtractedFromABillReceipt(BaseModel):
    ''''''

    place_from: str = Field(..., title="place where journey starts")
    date_from: date = Field(
        ..., title="date on which journey starts (DD/MM/YYYY)"
    )
    time_from: time = Field(..., title="time at which journey starts")
    place_to: str = Field(..., title="place where journey end")
    date_to: date = Field(..., title="date on which journey end (DD/MM/YYYY)")
    time_to: time = Field(..., title="time at which journey end")
    amount: float = Field(..., title="cost of journey ticket")