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