| 14 | |
| 15 | |
| 16 | class Variation(BaseObject): |
| 17 | |
| 18 | schema = VariationSchema() |
| 19 | |
| 20 | @property |
| 21 | def command(self): |
| 22 | return self.replace_app_props(self._command) |
| 23 | |
| 24 | @property |
| 25 | def raw_command(self): |
| 26 | return self.decode_bytes(self._command) |
| 27 | |
| 28 | def __init__(self, description, command): |
| 29 | super().__init__() |
| 30 | self.description = description |
| 31 | self._command = self.encode_string(command) |
no test coverage detected