export declare class Payee { private name; private address1; private address2; private address3; private city; private state; private zip; private country; private phone; /** * The name of the payee. * * @return The name of the payee. */ getName(): string; /** * The name of the payee. * * @param name The name of the payee. */ setName(name: string): void; /** * The address of the payee. * * @return The address of the payee. */ getAddress1(): string; /** * The address of the payee. * * @param address1 The address of the payee. */ setAddress1(address1: string): void; /** * The address of the payee. * * @return The address of the payee. */ getAddress2(): string; /** * The address of the payee. * * @param address2 The address of the payee. */ setAddress2(address2: string): void; /** * The address of the payee. * * @return The address of the payee. */ getAddress3(): string; /** * The address of the payee. * * @param address3 The address of the payee. */ setAddress3(address3: string): void; /** * The city of the payee. * * @return The city of the payee. */ getCity(): string; /** * The city of the payee. * * @param city The city of the payee. */ setCity(city: string): void; /** * The state of this payee. * * @return The state of this payee. */ getState(): string; /** * The state of this payee. * * @param state The state of this payee. */ setState(state: string): void; /** * The postal code of this payee. * * @return The postal code of this payee. */ getZip(): string; /** * The postal code of this payee. * * @param zip The postal code of this payee. */ setZip(zip: string): void; /** * The country code for this payee. * * @return The country code for this payee. * @see java.util.Locale#getISO3Country() */ getCountry(): string; /** * The country code for this payee. * * @param country The country code for this payee. */ setCountry(country: string): void; /** * The phone number. * * @return The phone number. */ getPhone(): string; /** * The phone number. * * @param phone The phone number. */ setPhone(phone: string): void; }