(self, *, data: Dict[str, Any])
| 39 | ) |
| 40 | |
| 41 | def __init__(self, *, data: Dict[str, Any]): |
| 42 | self._stickerId = data.get("stickerId") |
| 43 | self._slot = data.get("slot") |
| 44 | self._wear = data.get("wear") |
| 45 | self._offset_x = data.get("offset_x") |
| 46 | self._offset_y = data.get("offset_y") |
| 47 | self._icon_url = data.get("icon_url") |
| 48 | self._name = data.get("name") |
| 49 | self._reference = data.get("reference") |
| 50 | |
| 51 | @property |
| 52 | def stickerId(self) -> Optional[int]: |
nothing calls this directly
no outgoing calls
no test coverage detected