(self, *, data: Dict[str, Any])
| 57 | ) |
| 58 | |
| 59 | def __init__(self, *, data: Dict[str, Any]): |
| 60 | self._offers_enabled = data.get("offers_enabled") |
| 61 | self._max_offer_discount = data.get("max_offer_discount") |
| 62 | |
| 63 | @property |
| 64 | def offers_enabled(self) -> Optional[bool]: |
nothing calls this directly
no outgoing calls
no test coverage detected