ofx4js
Version:
A javascript OFX library, ported from OFX4J
75 lines (74 loc) • 1.6 kB
TypeScript
export declare class RecAddress {
private recName1;
private recName2;
private address1;
private address2;
private city;
private state;
private postalCode;
private phone;
/**
* @return the recName1
*/
getRecName1(): string;
/**
* @param recName1 the recName1 to set
*/
setRecName1(recName1: string): void;
/**
* @return the recName2
*/
getRecName2(): string;
/**
* @param recName2 the recName2 to set
*/
setRecName2(recName2: string): void;
/**
* @return the address1
*/
getAddress1(): string;
/**
* @param address1 the address1 to set
*/
setAddress1(address1: string): void;
/**
* @return the address2
*/
getAddress2(): string;
/**
* @param address2 the address2 to set
*/
setAddress2(address2: string): void;
/**
* @return the city
*/
getCity(): string;
/**
* @param city the city to set
*/
setCity(city: string): void;
/**
* @return the state
*/
getState(): string;
/**
* @param state the state to set
*/
setState(state: string): void;
/**
* @return the postalCode
*/
getPostalCode(): string;
/**
* @param postalCode the postalCode to set
*/
setPostalCode(postalCode: string): void;
/**
* @return the phone
*/
getPhone(): string;
/**
* @param phone the phone to set
*/
setPhone(phone: string): void;
}