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
  • inflect
  • __init__.py
  • Added support pre calculated products
    884439f4
    tulov.alex authored
    2017-04-27 23:50:24 -0700  
    Browse Code ยป
__init__.py 448 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
from floraconcierge.client.types import Object


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

    def __init__(self, *args, **kwargs):
        self.count = None
        self.id = None
        self.inflect1 = None
        self.inflect2 = None
        self.inflect3 = None
        self.inflect4 = None
        self.inflect5 = None
        self.inflect6 = None
        self.word = None

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