Skip to content

Moneyline

griddy / nfl / models / entities / moneyline**

moneyline

Classes

MoneyLineTypedDict

Bases: TypedDict


              flowchart TD
              griddy.nfl.models.entities.moneyline.MoneyLineTypedDict[MoneyLineTypedDict]

              

              click griddy.nfl.models.entities.moneyline.MoneyLineTypedDict href "" "griddy.nfl.models.entities.moneyline.MoneyLineTypedDict"
            

Money line betting odds

Attributes
away_price instance-attribute
away_price: NotRequired[str]

Away team money line odds (American format)

home_price instance-attribute
home_price: NotRequired[str]

Home team money line odds (American format)

MoneyLine

Bases: BaseModel


              flowchart TD
              griddy.nfl.models.entities.moneyline.MoneyLine[MoneyLine]
              griddy.nfl.types.basemodel.BaseModel[BaseModel]

                              griddy.nfl.types.basemodel.BaseModel --> griddy.nfl.models.entities.moneyline.MoneyLine
                


              click griddy.nfl.models.entities.moneyline.MoneyLine href "" "griddy.nfl.models.entities.moneyline.MoneyLine"
              click griddy.nfl.types.basemodel.BaseModel href "" "griddy.nfl.types.basemodel.BaseModel"
            

Money line betting odds

Attributes
away_price class-attribute instance-attribute
away_price: Annotated[
    Optional[str], Field(alias="awayPrice")
] = None

Away team money line odds (American format)

home_price class-attribute instance-attribute
home_price: Annotated[
    Optional[str], Field(alias="homePrice")
] = None

Home team money line odds (American format)