コード例 #1
0
ファイル: organization.py プロジェクト: willr/client_python
 def create_location(self, **kwargs):
     return Location.create(parent=self, **kwargs)
コード例 #2
0
ファイル: organization.py プロジェクト: willr/client_python
 def get_locations(self, **kwargs):
     return Location.get_all(parent=self, **kwargs)
コード例 #3
0
ファイル: organization.py プロジェクト: willr/client_python
 def get_location(self, id):
     return Location.get(parent=self, id=id)
コード例 #4
0
 def get_locations(self):
     return Location.get_all(parent=self)