blob: 0b85e6a0ec078e45b7283cf35ea6e3df7f3d335e [file]
import marshmallow as ma
from app.utility.base_object import BaseObject
class VariationSchema(ma.Schema):
description = ma.fields.String()
command = ma.fields.String()
@ma.post_load
def build_variation(self, data, **_):
return Variation(**data)
class Variation(BaseObject):
schema = VariationSchema()
@property
def command(self):
return self.replace_app_props(self._command)
@property
def raw_command(self):
return self.decode_bytes(self._command)
def __init__(self, description, command):
super().__init__()
self.description = description
self._command = self.encode_string(command)