Table of Contents

Class QIFAccountRecord

Namespace
Tudormobile.QIFLibrary
Assembly
Tudormobile.QIFLibrary.dll

Represents a QIF Account record.

public class QIFAccountRecord : QIFRecord
Inheritance
QIFAccountRecord
Inherited Members

Constructors

QIFAccountRecord(string, string, string, decimal, decimal)

Creates and initializes a new QIF Account record.

public QIFAccountRecord(string name, string description, string accountType, decimal balance = 0, decimal creditLimit = 0)

Parameters

name string

Account name.

description string

Account description.

accountType string

Account type.

balance decimal

Account balance.

creditLimit decimal

Account credit limit.

Properties

AccountType

Account type.

public string AccountType { get; }

Property Value

string

Balance

Account balance.

public decimal Balance { get; }

Property Value

decimal

CreditLimit

Account credit limit.

public decimal CreditLimit { get; }

Property Value

decimal

Description

Account description.

public string Description { get; }

Property Value

string

Name

Account name.

public string Name { get; }

Property Value

string