aboutsummaryrefslogtreecommitdiffstats
path: root/pygithub3/models/users.py
blob: c94a70411a70ed92c83ce4500024bf5f41d11dea (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#!/usr/bin/env python
# -*- encoding: utf-8 -*-

from .base import Model

__all__ = ('Plan', 'User')


class Plan(Model):

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


class User(Model):
    """ """

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

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