Skip to content

Weekly Passing Stats Response

griddy / nfl / models / responses / weekly_passing_stats_response**

weekly_passing_stats_response

Attributes

Classes

WeeklyPassingStatsResponseTypedDict

Bases: TypedDict


              flowchart TD
              griddy.nfl.models.responses.weekly_passing_stats_response.WeeklyPassingStatsResponseTypedDict[WeeklyPassingStatsResponseTypedDict]

              

              click griddy.nfl.models.responses.weekly_passing_stats_response.WeeklyPassingStatsResponseTypedDict href "" "griddy.nfl.models.responses.weekly_passing_stats_response.WeeklyPassingStatsResponseTypedDict"
            
Attributes
limit instance-attribute
limit: int

Maximum number of results returned

offset instance-attribute
offset: int

Number of records skipped

season instance-attribute
season: int

Season year

season_type instance-attribute
season_type: SeasonTypeEnum

Type of NFL season

sort_key instance-attribute
sort_key: NotRequired[str]

Field used for sorting

sort_value instance-attribute
sort_value: NotRequired[SortOrderEnum]

Sort direction for ordered results

total instance-attribute
total: int

Total number of players matching the criteria

week instance-attribute
week: str

Week identifier

qualified_passer instance-attribute
qualified_passer: NotRequired[bool]

Whether results are filtered to qualified passers only

team_offense instance-attribute
team_offense: NotRequired[str]

Team filter applied (if any)

WeeklyPassingStatsResponse

Bases: BaseModel


              flowchart TD
              griddy.nfl.models.responses.weekly_passing_stats_response.WeeklyPassingStatsResponse[WeeklyPassingStatsResponse]
              griddy.nfl.types.basemodel.BaseModel[BaseModel]

                              griddy.nfl.types.basemodel.BaseModel --> griddy.nfl.models.responses.weekly_passing_stats_response.WeeklyPassingStatsResponse
                


              click griddy.nfl.models.responses.weekly_passing_stats_response.WeeklyPassingStatsResponse href "" "griddy.nfl.models.responses.weekly_passing_stats_response.WeeklyPassingStatsResponse"
              click griddy.nfl.types.basemodel.BaseModel href "" "griddy.nfl.types.basemodel.BaseModel"
            
Attributes
limit instance-attribute
limit: int

Maximum number of results returned

offset instance-attribute
offset: int

Number of records skipped

season instance-attribute
season: int

Season year

season_type instance-attribute
season_type: Annotated[
    SeasonTypeEnum, Field(alias="seasonType")
]

Type of NFL season

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

Field used for sorting

sort_value class-attribute instance-attribute
sort_value: Annotated[
    Optional[SortOrderEnum], Field(alias="sortValue")
] = None

Sort direction for ordered results

total instance-attribute
total: int

Total number of players matching the criteria

week instance-attribute
week: str

Week identifier

qualified_passer class-attribute instance-attribute
qualified_passer: Annotated[
    Optional[bool], Field(alias="qualifiedPasser")
] = None

Whether results are filtered to qualified passers only

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

Team filter applied (if any)