Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
duedil-python / duedil / models / bank_account.py
Size: Mime:
from __future__ import unicode_literals

from .base import Model


class BankAccount(Model):
    attribute_names = [
        'bank',
        # string Name of bank
        'sortCode',
        # string Bank sort code
        'count',
        # integer Number of accounts
        'id',
        # string Identifier for bank account
    ]