11 lines
187 B
Python
11 lines
187 B
Python
from pydantic import BaseModel
|
|
|
|
|
|
class IssueDetailsResponse(BaseModel):
|
|
id: str
|
|
issue_number: str
|
|
in_stock: bool
|
|
is_read: bool
|
|
comic_id: str
|
|
volume_id: str | None
|