* *
  • CloseBillingAgreementResult: OffAmazonPaymentsService_Model_CloseBillingAgreementResult
  • *
  • ResponseMetadata: OffAmazonPaymentsService_Model_ResponseMetadata
  • * * */ class OffAmazonPaymentsService_Model_CloseBillingAgreementResponse extends OffAmazonPaymentsService_Model { /** * Construct new OffAmazonPaymentsService_Model_CloseBillingAgreementResponse * * @param mixed $data DOMElement or Associative Array to construct from. * * Valid properties: * */ public function __construct ($data = null) { $this->_fields = array( 'CloseBillingAgreementResult' => array( 'FieldValue' => null, 'FieldType' => 'OffAmazonPaymentsService_Model_CloseBillingAgreementResult' ), 'ResponseMetadata' => array( 'FieldValue' => null, 'FieldType' => 'OffAmazonPaymentsService_Model_ResponseMetadata' ) ); parent::__construct($data); } /** * Construct OffAmazonPaymentsService_Model_CloseBillingAgreementResponse from XML string * * @param string $xml XML string to construct from * @return OffAmazonPaymentsService_Model_CloseBillingAgreementResponse */ public static function fromXML ($xml) { $dom = new DOMDocument(); $dom->loadXML($xml); $xpath = new DOMXPath($dom); $xpath->registerNamespace('a', 'http://mws.amazonservices.com/schema/OffAmazonPayments/2013-01-01'); $response = $xpath->query('//a:CloseBillingAgreementResponse'); if ($response->length == 1) { return new OffAmazonPaymentsService_Model_CloseBillingAgreementResponse( ($response->item(0))); } else { throw new Exception( "Unable to construct OffAmazonPaymentsService_Model_CloseBillingAgreementResponse from provided XML. Make sure that CloseBillingAgreementResponse is a root element"); } } /** * Gets the value of the CloseBillingAgreementResult. * * @return OffAmazonPaymentsService_Model_CloseBillingAgreementResult CloseBillingAgreementResult */ public function getCloseBillingAgreementResult () { return $this->_fields['CloseBillingAgreementResult']['FieldValue']; } /** * Sets the value of the CloseBillingAgreementResult. * * @param OffAmazonPaymentsService_Model_CloseBillingAgreementResult CloseBillingAgreementResult * @return void */ public function setCloseBillingAgreementResult ($value) { $this->_fields['CloseBillingAgreementResult']['FieldValue'] = $value; return; } /** * Sets the value of the CloseBillingAgreementResult and returns this instance * * @param OffAmazonPaymentsService_Model_CloseBillingAgreementResult $value CloseBillingAgreementResult * @return OffAmazonPaymentsService_Model_CloseBillingAgreementResponse instance */ public function withCloseBillingAgreementResult ($value) { $this->setCloseBillingAgreementResult($value); return $this; } /** * Checks if CloseBillingAgreementResult is set * * @return bool true if CloseBillingAgreementResult property is set */ public function isSetCloseBillingAgreementResult () { return ! is_null($this->_fields['CloseBillingAgreementResult']['FieldValue']); } /** * Gets the value of the ResponseMetadata. * * @return OffAmazonPaymentsService_Model_ResponseMetadata ResponseMetadata */ public function getResponseMetadata () { return $this->_fields['ResponseMetadata']['FieldValue']; } /** * Sets the value of the ResponseMetadata. * * @param OffAmazonPaymentsService_Model_ResponseMetadata ResponseMetadata * @return void */ public function setResponseMetadata ($value) { $this->_fields['ResponseMetadata']['FieldValue'] = $value; return; } /** * Sets the value of the ResponseMetadata and returns this instance * * @param OffAmazonPaymentsService_Model_ResponseMetadata $value ResponseMetadata * @return OffAmazonPaymentsService_Model_CloseBillingAgreementResponse instance */ public function withResponseMetadata ($value) { $this->setResponseMetadata($value); return $this; } /** * Checks if ResponseMetadata is set * * @return bool true if ResponseMetadata property is set */ public function isSetResponseMetadata () { return ! is_null($this->_fields['ResponseMetadata']['FieldValue']); } /** * XML Representation for this object * * @return string XML for this object */ public function toXML () { $xml = ""; $xml .= ""; $xml .= $this->_toXMLFragment(); $xml .= ""; return $xml; } private $_responseHeaderMetadata = null; public function getResponseHeaderMetadata () { return $this->_responseHeaderMetadata; } public function setResponseHeaderMetadata ($responseHeaderMetadata) { return $this->_responseHeaderMetadata = $responseHeaderMetadata; } }