Sign in

Django Tools / FloraConcierge Python Api Client · Files

Logo

GitLab

  • Back to group
  • Project
  • Activity
  • Files
  • Commits
  • Network
  • Graphs
  • Milestones
  • Issues 0
  • Merge Requests 0
  • Labels
  • Wiki
  • floraconcierge-python-api-client
  • floraconcierge
  • mapping
  • model
  • user
  • social
  • __init__.py
  • 0.7.37 ...
    fe3ad191
    ------
    
    Updated api functions.
    Anton Shurashov authored
    2016-02-15 11:00:38 +0300  
    Browse Code ยป
__init__.py 488 Bytes
Edit Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
from floraconcierge.client.types import Object


class Signin(Object):
    """
    :type id: int
    """

    def __init__(self, *args, **kwargs):
        self.app_id = None
        self.data = None
        self.expire = None
        self.id = None
        self.is_success = None
        self.redirect_fail = None
        self.redirect_success = None
        self.service = None
        self.token = None
        self.user_id = None

        super(Signin, self).__init__(*args, **kwargs)