cell_watch.py 608 B

12345678910111213141516171819202122232425262728293031323334
  1. #Autogenerated schema
  2. from openpyxl.descriptors.serialisable import Serialisable
  3. from openpyxl.descriptors import (
  4. Sequence,
  5. String,
  6. )
  7. # could be done using a nestedSequence
  8. class CellWatch(Serialisable):
  9. tagname = "cellWatch"
  10. r = String()
  11. def __init__(self,
  12. r=None,
  13. ):
  14. self.r = r
  15. class CellWatches(Serialisable):
  16. tagname = "cellWatches"
  17. cellWatch = Sequence(expected_type=CellWatch)
  18. __elements__ = ('cellWatch',)
  19. def __init__(self,
  20. cellWatch=(),
  21. ):
  22. self.cellWatch = cellWatch