def get_organization(self, id): return Organization.get(parent=self, id=id)
def create_organization(self, **kwargs): return Organization.create(parent=self, **kwargs)
def get_organizations(self, limit=25, offset=0, **kwargs): return Organization.get_all(parent=self, limit=limit, offset=offset, **kwargs)