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