changed some model names to more accurately reflect the concerns were working with

This commit is contained in:
Josh Burman
2021-09-10 14:04:21 -04:00
parent 2906141a8f
commit 43d2088f13
3 changed files with 7 additions and 7 deletions

View File

@ -3,6 +3,6 @@ from typing import List, Optional
from models.form import Form
class SolveResponse(BaseModel):
class Solution(BaseModel):
response_id: int
forms: List[Form]

View File

@ -7,7 +7,7 @@ from models.irt_model import IRTModel
from models.objective_function import ObjectiveFunction
from models.advanced_options import AdvancedOptions
class SolveRequest(BaseModel):
class SolverRun(BaseModel):
token: str
items: List[Item]
constraints: List[Constraint]