How to use the vortexasdk.operations.Reference.__init__ function in vortexasdk

To help you get started, we’ve selected a few vortexasdk examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github V0RT3X4 / python-sdk / vortexasdk / endpoints / corporations.py View on Github external
def __init__(self):
        Reference.__init__(self, CORPORATIONS_REFERENCE)
        Search.__init__(self, CORPORATIONS_REFERENCE)
github V0RT3X4 / python-sdk / vortexasdk / endpoints / geographies.py View on Github external
def __init__(self):
        Reference.__init__(self, GEOGRAPHIES_REFERENCE)
        Search.__init__(self, GEOGRAPHIES_REFERENCE)
github V0RT3X4 / python-sdk / vortexasdk / endpoints / geographies.py View on Github external
def __init__(self):
        Reference.__init__(self, GEOGRAPHIES_REFERENCE)
        Search.__init__(self, GEOGRAPHIES_REFERENCE)
github V0RT3X4 / python-sdk / vortexasdk / endpoints / attributes.py View on Github external
def __init__(self):
        Reference.__init__(self, ATTRIBUTES_REFERENCE)
        Search.__init__(self, ATTRIBUTES_REFERENCE)
github V0RT3X4 / python-sdk / vortexasdk / endpoints / products.py View on Github external
def __init__(self):
        """Instantiate endpoint using reference endpoint."""
        Reference.__init__(self, PRODUCTS_REFERENCE)
        Search.__init__(self, PRODUCTS_REFERENCE)
github V0RT3X4 / python-sdk / vortexasdk / endpoints / vessels.py View on Github external
def __init__(self):
        """Instantiate endpoint using reference endpoint."""
        Reference.__init__(self, VESSELS_REFERENCE)
        Search.__init__(self, VESSELS_REFERENCE)