Repository URL to install this package:
|
Version:
1.0.1 ▾
|
# -*- coding: utf-8 -*-
class TypeEnum(object):
"""Implementation of the 'Type' enum.
TODO: type enum description here.
Attributes:
VOI: TODO: type description here.
VOA: TODO: type description here.
VOAHISTORY: TODO: type description here.
HISTORY: TODO: type description here.
VOIETXVERIFY: TODO: type description here.
VOIEWITHREPORT: TODO: type description here.
VOIEWITHINTERVIEW: TODO: type description here.
PAYSTATEMENT: TODO: type description here.
PREQUALVOA: TODO: type description here.
ASSETSUMMARY: TODO: type description here.
VOIEWITHSTATEMENT: TODO: type description here.
TRANSACTIONS: TODO: type description here.
STATEMENT: TODO: type description here.
VOIEPAYROLLPROVIDER: TODO: type description here.
"""
VOI = 'voi'
VOA = 'voa'
VOAHISTORY = 'voaHistory'
HISTORY = 'history'
VOIE_TXVERIFY = 'voieTxVerify'
VOIEWITHREPORT = 'voieWithReport'
VOIEWITHINTERVIEW = 'voieWithInterview'
PAYSTATEMENT = 'paystatement'
PREQUALVOA = 'preQualVoa'
ASSETSUMMARY = 'assetSummary'
VOIEWITHSTATEMENT = 'voieWithStatement'
TRANSACTIONS = 'transactions'
STATEMENT = 'statement'
VOIEPAYROLLPROVIDER = 'voiePayrollProvider'