Datas

Datas #

The Datas class is used to store the input you receive. It should be inherited by your own custom data classes.

class MyDatas(Datas)
  def __init__(self, json_in)
     super().__init__(json_in)

my_datas = MyDatas(input)