v0.1.0-alpha.10
📢 Preamble
A release to refactor the way PDF fields are accessed, documentation was update to reflect this.
💅 Improvements
The pdf
attribute is dynamically populated object with dynamically generated keys. Here are some examples of how PDF
field names are mapped to snake_case
keys:
@Cardholder UID
would becomepdf.cardholder_uid
@City
would becomepdf.city
@Company Name
would becomepdf.company_name
@PINNumber
would becomepdf.pin_number
🛠️ Fixes
dto/summary/pdf.py
relaxes theHref
field requirement, they are nowOptionalHref
with a default ofNone
#77