* *
  • RefundDetails: OffAmazonPaymentsService_Model_RefundDetails
  • * * */ class OffAmazonPaymentsService_Model_GetRefundDetailsResult extends OffAmazonPaymentsService_Model { /** * Construct new OffAmazonPaymentsService_Model_GetRefundDetailsResult * * @param mixed $data DOMElement or Associative Array to construct from. * * Valid properties: * */ public function __construct($data = null) { $this->_fields = array ( 'RefundDetails' => array('FieldValue' => null, 'FieldType' => 'OffAmazonPaymentsService_Model_RefundDetails'), ); parent::__construct($data); } /** * Gets the value of the RefundDetails. * * @return RefundDetails RefundDetails */ public function getRefundDetails() { return $this->_fields['RefundDetails']['FieldValue']; } /** * Sets the value of the RefundDetails. * * @param RefundDetails RefundDetails * @return void */ public function setRefundDetails($value) { $this->_fields['RefundDetails']['FieldValue'] = $value; return; } /** * Sets the value of the RefundDetails and returns this instance * * @param RefundDetails $value RefundDetails * @return OffAmazonPaymentsService_Model_GetRefundDetailsResult instance */ public function withRefundDetails($value) { $this->setRefundDetails($value); return $this; } /** * Checks if RefundDetails is set * * @return bool true if RefundDetails property is set */ public function isSetRefundDetails() { return !is_null($this->_fields['RefundDetails']['FieldValue']); } } ?>