pytenno.models.bids

class pytenno.models.bids.Bid(id: str, auction: str, user: str, value: int, created: datetime, updated: datetime)[source]

Represents a bid on an auction.

auction: str

The ID of the auction the bid is on.

created: datetime

The date and time the bid was created.

id: str

The ID of the bid.

updated: datetime

The date and time the bid was updated.

user: str

The ID of the user who made the bid.

value: int

The value (platinum) of the bid.