Skip to content

Commit

Permalink
Add AdminTimeoutSeconds to AdminKeepAlive
Browse files Browse the repository at this point in the history
  • Loading branch information
thdfw committed Jan 1, 2025
1 parent 0caa776 commit d2c2b73
Showing 1 changed file with 4 additions and 6 deletions.
10 changes: 4 additions & 6 deletions gw_spaceheat/named_types/admin_keep_alive.py
Original file line number Diff line number Diff line change
@@ -1,12 +1,10 @@
"""Type admin.keep.alive, version 000"""

from typing import Literal

from typing import Literal, Optional
from pydantic import BaseModel


class AdminKeepAlive(BaseModel):
""" """

TypeName: Literal["admin.keep.alive"] = "admin.keep.alive"
Version: Literal["000"] = "000"
AdminTimeoutSeconds: Optional[int] = None
TypeName: Literal["admin.keepalive"] = "admin.keepalive"
Version: Literal["001"] = "001"

0 comments on commit d2c2b73

Please sign in to comment.