We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8c5266b commit e50dd4aCopy full SHA for e50dd4a
src/aleph/schemas/api/costs.py
@@ -12,8 +12,9 @@ class EstimatedCostDetailResponse(BaseModel):
12
name: str
13
cost_hold: str
14
cost_stream: str
15
+ cost_credit: str
16
- @field_validator("cost_hold", "cost_stream", mode="before")
17
+ @field_validator("cost_hold", "cost_stream", "cost_credit", mode="before")
18
def check_format_price(cls, v):
19
return format_cost_str(v)
20
0 commit comments