aboutsummaryrefslogtreecommitdiffstats
path: root/pygithub3/resources/orgs.py
blob: f0a9804f432298346055924f12e9a52b4f5fe5ab (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
#!/usr/bin/env python
# -*- encoding: utf-8 -*-

from .base import Resource
from .users import Plan

__all__ = ('Org', )


class Org(Resource):

    _dates = ('created_at', )
    _maps = {'plan': Plan}

    def __str__(self):
        return '<Org (%s)>' % getattr(self, 'login', '')


class Team(Resource):

    def __str__(self):
        return '<Team (%s)>' % getattr(self, 'name', '')


class Member(Resource):

    def __str__(self):
        return '<TeamMember (%s)>' % getattr(self, 'login', '')