ofx4js
Version:
A javascript OFX library, ported from OFX4J
75 lines (74 loc) • 1.63 kB
TypeScript
export declare class PayerAddress {
private payerName1;
private payerName2;
private address1;
private address2;
private city;
private state;
private postalCode;
private phone;
/**
* @return the payerName1
*/
getPayerName1(): string;
/**
* @param payerName1 the payerName1 to set
*/
setPayerName1(payerName1: string): void;
/**
* @return the payerName2
*/
getPayerName2(): string;
/**
* @param payerName2 the payerName2 to set
*/
setPayerName2(payerName2: 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;
}