Types¶
Type aliases representing common PACER scalar types.
Includes newtypes like Date, DateTime, Money, and Character used throughout the PACER SDK for strong typing and validation.
- class pacersdk.models.types.Character¶
Represents a single alphanumeric character (0-9, a-z, A-Z)
alias of
str
- class pacersdk.models.types.Date¶
Date in format: YYYY-MM-DD or YYYY/MM/DD
alias of
str
- class pacersdk.models.types.DateTime¶
ISO-like datetime format: YYYY-MM-DDTHH:MM:SS.sssZ or YYYY/MM/DDTHH:MM:SS.sssZ
alias of
str
- class pacersdk.models.types.JurisdictionType¶
Up to 4 alphanumeric characters
alias of
str
- class pacersdk.models.types.Money¶
Decimal with two fraction digits
alias of
Decimal