Sign in

tulov.alex / python-v3-api-client · Files

Logo

GitLab

  • Back to dashboard
  • Project
  • Activity
  • Files
  • Commits
  • Network
  • Graphs
  • Milestones
  • Issues 0
  • Merge Requests 0
  • Labels
  • Wiki
  • python-v3-api-client
  • floraconcierge
  • mapping
  • api
  • result
  • order
  • __init__.py
  • First commit for change python version to 3.8.
    df5b8cd2
    tulov.alex authored
    2020-09-01 21:54:41 -0700  
    Browse Code ยป
__init__.py 294 Bytes
Edit Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11 12 13 14
from floraconcierge.client.types import Object


class Submit(Object):
    """
    :type order: Object
    :type validation: Result
    """

    def __init__(self, *args, **kwargs):
        self.order = None
        self.validation = None

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