Source code for gws.qgis.types

import gws.types as t


[docs]class PrintTemplateElement: def __init__(self): self.tag = '' self.attrs = {} self.type = ''
# more auto props....
[docs]class PrintTemplate: def __init__(self): self.title = '' self.index = 0 self.attrs = {} self.elements: t.List[PrintTemplateElement] = []