package cse308.swift.shared.beans; public class ClientMoney { /** * ClientID for this money account */ private int clientID; /** * Funds for this money account */ private double clientFunds; /** * Perferred payment option for this money account */ private String preferredPaymentOption; /** * Returns the ID of the client. * @return The clientID of this money account: int */ public int getClientID() { return clientID; } /** * Sets the ClientID of the client * @param id The clientID of this money account: int */ public void setClientID(int id) { this.clientID = id; } /** * Returns the Funds of this money account * @return The funds of this money account: double */ public double getClientFunds() { return clientFunds; } /** * Sets the Funds of this money account * @param fund The funds of this money account: double */ public void setClientFunds(double fund) { this.clientFunds = fund; } /** * Get the perferred payment option for this money account * @return The perferred payment option for this money account */ public String getPreferredPaymentOptions() { return preferredPaymentOption; } /** * Sets the perferred payment option for this money account * @param preferred The perferred payment option for this money account */ public void setPreferredPaymentOptions(String preferred) { this.preferredPaymentOption = preferred; } }