amount = $amount; $this->currencyCode = $currencyCode; $this->userId = $userId; $this->assocId = $assocId; } function setAmount($amount) { $this->amount = $amount; } function getAmount() { return $this->amount; } function setCurrencyCode($currencyCode) { $this->currencyCode = $currencyCode; } function getCurrencyCode() { return $this->currencyCode; } function getDescription() { fatalError('ABSTRACT METHOD'); } function setUserId($userId) { $this->userId = $userId; } function getUserId() { return $this->userId; } function setAssocId($assocId) { $this->assocId = $assocId; } function getAssocId() { return $this->assocId; } } ?>