* *
  • AmazonAuthorizationId: string
  • > *
  • AuthorizationReferenceId: string
  • *
  • AuthorizationBillingAddress: OffAmazonPaymentsService_Model_Address
  • *
  • SellerAuthorizationNote: string
  • *
  • AuthorizationAmount: OffAmazonPaymentsService_Model_Price
  • *
  • CapturedAmount: OffAmazonPaymentsService_Model_Price
  • *
  • AuthorizationFee: OffAmazonPaymentsService_Model_Price
  • *
  • IdList: OffAmazonPaymentsService_Model_IdList
  • *
  • CreationTimestamp: string
  • *
  • ExpirationTimestamp: string
  • *
  • AuthorizationStatus: OffAmazonPaymentsService_Model_Status
  • *
  • OrderItemCategories: OffAmazonPaymentsService_Model_OrderItemCategories
  • *
  • CaptureNow: bool
  • *
  • SoftDescriptor: string
  • *
  • AddressVerificationCode: string
  • * * */ class OffAmazonPaymentsService_Model_AuthorizationDetails extends OffAmazonPaymentsService_Model { /** * Construct new OffAmazonPaymentsService_Model_AuthorizationDetails * * @param mixed $data DOMElement or Associative Array to construct from. * * Valid properties: * */ public function __construct($data = null) { $this->_fields = array ( 'AmazonAuthorizationId' => array('FieldValue' => null, 'FieldType' => 'string'), 'AuthorizationReferenceId' => array('FieldValue' => null, 'FieldType' => 'string'), 'AuthorizationBillingAddress' => array('FieldValue' => null, 'FieldType' => 'OffAmazonPaymentsService_Model_Address'), 'SellerAuthorizationNote' => array('FieldValue' => null, 'FieldType' => 'string'), 'AuthorizationAmount' => array('FieldValue' => null, 'FieldType' => 'OffAmazonPaymentsService_Model_Price'), 'CapturedAmount' => array('FieldValue' => null, 'FieldType' => 'OffAmazonPaymentsService_Model_Price'), 'AuthorizationFee' => array('FieldValue' => null, 'FieldType' => 'OffAmazonPaymentsService_Model_Price'), 'IdList' => array('FieldValue' => null, 'FieldType' => 'OffAmazonPaymentsService_Model_IdList'), 'CreationTimestamp' => array('FieldValue' => null, 'FieldType' => 'string'), 'ExpirationTimestamp' => array('FieldValue' => null, 'FieldType' => 'string'), 'AuthorizationStatus' => array('FieldValue' => null, 'FieldType' => 'OffAmazonPaymentsService_Model_Status'), 'OrderItemCategories' => array('FieldValue' => null, 'FieldType' => 'OffAmazonPaymentsService_Model_OrderItemCategories'), 'CaptureNow' => array('FieldValue' => null, 'FieldType' => 'bool'), 'SoftDescriptor' => array('FieldValue' => null, 'FieldType' => 'string'), 'AddressVerificationCode' => array('FieldValue' => null, 'FieldType' => 'string'), ); parent::__construct($data); } /** * Gets the value of the AmazonAuthorizationId property. * * @return string AmazonAuthorizationId */ public function getAmazonAuthorizationId() { return $this->_fields['AmazonAuthorizationId']['FieldValue']; } /** * Sets the value of the AmazonAuthorizationId property. * * @param string AmazonAuthorizationId * @return this instance */ public function setAmazonAuthorizationId($value) { $this->_fields['AmazonAuthorizationId']['FieldValue'] = $value; return $this; } /** * Sets the value of the AmazonAuthorizationId and returns this instance * * @param string $value AmazonAuthorizationId * @return OffAmazonPaymentsService_Model_AuthorizationDetails instance */ public function withAmazonAuthorizationId($value) { $this->setAmazonAuthorizationId($value); return $this; } /** * Checks if AmazonAuthorizationId is set * * @return bool true if AmazonAuthorizationId is set */ public function isSetAmazonAuthorizationId() { return !is_null($this->_fields['AmazonAuthorizationId']['FieldValue']); } /** * Gets the value of the AuthorizationReferenceId property. * * @return string AuthorizationReferenceId */ public function getAuthorizationReferenceId() { return $this->_fields['AuthorizationReferenceId']['FieldValue']; } /** * Sets the value of the AuthorizationReferenceId property. * * @param string AuthorizationReferenceId * @return this instance */ public function setAuthorizationReferenceId($value) { $this->_fields['AuthorizationReferenceId']['FieldValue'] = $value; return $this; } /** * Sets the value of the AuthorizationReferenceId and returns this instance * * @param string $value AuthorizationReferenceId * @return OffAmazonPaymentsService_Model_AuthorizationDetails instance */ public function withAuthorizationReferenceId($value) { $this->setAuthorizationReferenceId($value); return $this; } /** * Checks if AuthorizationReferenceId is set * * @return bool true if AuthorizationReferenceId is set */ public function isSetAuthorizationReferenceId() { return !is_null($this->_fields['AuthorizationReferenceId']['FieldValue']); } /** * Gets the value of the AuthorizationBillingAddress property. * * @return string AuthorizationBillingAddress */ public function getAuthorizationBillingAddress() { return $this->_fields['AuthorizationBillingAddress']['FieldValue']; } /** * Sets the value of the AuthorizationBillingAddress property. * * @param string AuthorizationBillingAddress * @return this instance */ public function setAuthorizationBillingAddress($value) { $this->_fields['AuthorizationBillingAddress']['FieldValue'] = $value; return $this; } /** * Sets the value of the AuthorizationBillingAddress and returns this instance * * @param string $value AuthorizationBillingAddress * @return OffAmazonPaymentsService_Model_Address instance */ public function withAuthorizationBillingAddress($value) { $this->setAuthorizationBillingAddress($value); return $this; } /** * Checks if AuthorizationBillingAddress is set * * @return bool true if AuthorizationBillingAddress is set */ public function isSetAuthorizationBillingAddress() { return !is_null($this->_fields['AuthorizationBillingAddress']['FieldValue']); } /** * Gets the value of the SellerAuthorizationNote property. * * @return string SellerAuthorizationNote */ public function getSellerAuthorizationNote() { return $this->_fields['SellerAuthorizationNote']['FieldValue']; } /** * Sets the value of the SellerAuthorizationNote property. * * @param string SellerAuthorizationNote * @return this instance */ public function setSellerAuthorizationNote($value) { $this->_fields['SellerAuthorizationNote']['FieldValue'] = $value; return $this; } /** * Sets the value of the SellerAuthorizationNote and returns this instance * * @param string $value SellerAuthorizationNote * @return OffAmazonPaymentsService_Model_AuthorizationDetails instance */ public function withSellerAuthorizationNote($value) { $this->setSellerAuthorizationNote($value); return $this; } /** * Checks if SellerAuthorizationNote is set * * @return bool true if SellerAuthorizationNote is set */ public function isSetSellerAuthorizationNote() { return !is_null($this->_fields['SellerAuthorizationNote']['FieldValue']); } /** * Gets the value of the AuthorizationAmount. * * @return Price AuthorizationAmount */ public function getAuthorizationAmount() { return $this->_fields['AuthorizationAmount']['FieldValue']; } /** * Sets the value of the AuthorizationAmount. * * @param Price AuthorizationAmount * @return void */ public function setAuthorizationAmount($value) { $this->_fields['AuthorizationAmount']['FieldValue'] = $value; return; } /** * Sets the value of the AuthorizationAmount and returns this instance * * @param Price $value AuthorizationAmount * @return OffAmazonPaymentsService_Model_AuthorizationDetails instance */ public function withAuthorizationAmount($value) { $this->setAuthorizationAmount($value); return $this; } /** * Checks if AuthorizationAmount is set * * @return bool true if AuthorizationAmount property is set */ public function isSetAuthorizationAmount() { return !is_null($this->_fields['AuthorizationAmount']['FieldValue']); } /** * Gets the value of the CapturedAmount. * * @return Price CapturedAmount */ public function getCapturedAmount() { return $this->_fields['CapturedAmount']['FieldValue']; } /** * Sets the value of the CapturedAmount. * * @param Price CapturedAmount * @return void */ public function setCapturedAmount($value) { $this->_fields['CapturedAmount']['FieldValue'] = $value; return; } /** * Sets the value of the CapturedAmount and returns this instance * * @param Price $value CapturedAmount * @return OffAmazonPaymentsService_Model_AuthorizationDetails instance */ public function withCapturedAmount($value) { $this->setCapturedAmount($value); return $this; } /** * Checks if CapturedAmount is set * * @return bool true if CapturedAmount property is set */ public function isSetCapturedAmount() { return !is_null($this->_fields['CapturedAmount']['FieldValue']); } /** * Gets the value of the AuthorizationFee. * * @return Price AuthorizationFee */ public function getAuthorizationFee() { return $this->_fields['AuthorizationFee']['FieldValue']; } /** * Sets the value of the AuthorizationFee. * * @param Price AuthorizationFee * @return void */ public function setAuthorizationFee($value) { $this->_fields['AuthorizationFee']['FieldValue'] = $value; return; } /** * Sets the value of the AuthorizationFee and returns this instance * * @param Price $value AuthorizationFee * @return OffAmazonPaymentsService_Model_AuthorizationDetails instance */ public function withAuthorizationFee($value) { $this->setAuthorizationFee($value); return $this; } /** * Checks if AuthorizationFee is set * * @return bool true if AuthorizationFee property is set */ public function isSetAuthorizationFee() { return !is_null($this->_fields['AuthorizationFee']['FieldValue']); } /** * Gets the value of the IdList. * * @return IdList IdList */ public function getIdList() { return $this->_fields['IdList']['FieldValue']; } /** * Sets the value of the IdList. * * @param IdList IdList * @return void */ public function setIdList($value) { $this->_fields['IdList']['FieldValue'] = $value; return; } /** * Sets the value of the IdList and returns this instance * * @param IdList $value IdList * @return OffAmazonPaymentsService_Model_AuthorizationDetails instance */ public function withIdList($value) { $this->setIdList($value); return $this; } /** * Checks if IdList is set * * @return bool true if IdList property is set */ public function isSetIdList() { return !is_null($this->_fields['IdList']['FieldValue']); } /** * Gets the value of the CreationTimestamp property. * * @return string CreationTimestamp */ public function getCreationTimestamp() { return $this->_fields['CreationTimestamp']['FieldValue']; } /** * Sets the value of the CreationTimestamp property. * * @param string CreationTimestamp * @return this instance */ public function setCreationTimestamp($value) { $this->_fields['CreationTimestamp']['FieldValue'] = $value; return $this; } /** * Sets the value of the CreationTimestamp and returns this instance * * @param string $value CreationTimestamp * @return OffAmazonPaymentsService_Model_AuthorizationDetails instance */ public function withCreationTimestamp($value) { $this->setCreationTimestamp($value); return $this; } /** * Checks if CreationTimestamp is set * * @return bool true if CreationTimestamp is set */ public function isSetCreationTimestamp() { return !is_null($this->_fields['CreationTimestamp']['FieldValue']); } /** * Gets the value of the ExpirationTimestamp property. * * @return string ExpirationTimestamp */ public function getExpirationTimestamp() { return $this->_fields['ExpirationTimestamp']['FieldValue']; } /** * Sets the value of the ExpirationTimestamp property. * * @param string ExpirationTimestamp * @return this instance */ public function setExpirationTimestamp($value) { $this->_fields['ExpirationTimestamp']['FieldValue'] = $value; return $this; } /** * Sets the value of the ExpirationTimestamp and returns this instance * * @param string $value ExpirationTimestamp * @return OffAmazonPaymentsService_Model_AuthorizationDetails instance */ public function withExpirationTimestamp($value) { $this->setExpirationTimestamp($value); return $this; } /** * Checks if ExpirationTimestamp is set * * @return bool true if ExpirationTimestamp is set */ public function isSetExpirationTimestamp() { return !is_null($this->_fields['ExpirationTimestamp']['FieldValue']); } /** * Gets the value of the AuthorizationStatus. * * @return Status AuthorizationStatus */ public function getAuthorizationStatus() { return $this->_fields['AuthorizationStatus']['FieldValue']; } /** * Sets the value of the AuthorizationStatus. * * @param Status AuthorizationStatus * @return void */ public function setAuthorizationStatus($value) { $this->_fields['AuthorizationStatus']['FieldValue'] = $value; return; } /** * Sets the value of the AuthorizationStatus and returns this instance * * @param Status $value AuthorizationStatus * @return OffAmazonPaymentsService_Model_AuthorizationDetails instance */ public function withAuthorizationStatus($value) { $this->setAuthorizationStatus($value); return $this; } /** * Checks if AuthorizationStatus is set * * @return bool true if AuthorizationStatus property is set */ public function isSetAuthorizationStatus() { return !is_null($this->_fields['AuthorizationStatus']['FieldValue']); } /** * Gets the value of the OrderItemCategories. * * @return OrderItemCategories OrderItemCategories */ public function getOrderItemCategories() { return $this->_fields['OrderItemCategories']['FieldValue']; } /** * Sets the value of the OrderItemCategories. * * @param OrderItemCategories OrderItemCategories * @return void */ public function setOrderItemCategories($value) { $this->_fields['OrderItemCategories']['FieldValue'] = $value; return; } /** * Sets the value of the OrderItemCategories and returns this instance * * @param OrderItemCategories $value OrderItemCategories * @return OffAmazonPaymentsService_Model_AuthorizationDetails instance */ public function withOrderItemCategories($value) { $this->setOrderItemCategories($value); return $this; } /** * Checks if OrderItemCategories is set * * @return bool true if OrderItemCategories property is set */ public function isSetOrderItemCategories() { return !is_null($this->_fields['OrderItemCategories']['FieldValue']); } /** * Gets the value of the CaptureNow property. * * @return bool CaptureNow */ public function getCaptureNow() { return $this->_fields['CaptureNow']['FieldValue']; } /** * Sets the value of the CaptureNow property. * * @param bool CaptureNow * @return this instance */ public function setCaptureNow($value) { $this->_fields['CaptureNow']['FieldValue'] = $value; return $this; } /** * Sets the value of the CaptureNow and returns this instance * * @param bool $value CaptureNow * @return OffAmazonPaymentsService_Model_AuthorizationDetails instance */ public function withCaptureNow($value) { $this->setCaptureNow($value); return $this; } /** * Checks if CaptureNow is set * * @return bool true if CaptureNow is set */ public function isSetCaptureNow() { return !is_null($this->_fields['CaptureNow']['FieldValue']); } /** * Gets the value of the SoftDescriptor property. * * @return string SoftDescriptor */ public function getSoftDescriptor() { return $this->_fields['SoftDescriptor']['FieldValue']; } /** * Sets the value of the SoftDescriptor property. * * @param string SoftDescriptor * @return this instance */ public function setSoftDescriptor($value) { $this->_fields['SoftDescriptor']['FieldValue'] = $value; return $this; } /** * Sets the value of the SoftDescriptor and returns this instance * * @param string $value SoftDescriptor * @return OffAmazonPaymentsService_Model_AuthorizationDetails instance */ public function withSoftDescriptor($value) { $this->setSoftDescriptor($value); return $this; } /** * Checks if SoftDescriptor is set * * @return bool true if SoftDescriptor is set */ public function isSetSoftDescriptor() { return !is_null($this->_fields['SoftDescriptor']['FieldValue']); } /** * Gets the value of the AddrerificationCode property. * * @param string AddressVerificationCode * @return this instance */ public function getAddressVerificationCode() { return $this->_fields['AddressVerificationCode']['FieldValue']; } /** * Sets the value of the AddressVerificationCode property. * * @param string AddressVerificationCode * @return this instance */ public function setAddressVerificationCode($value) { $this->_fields['AddressVerificationCode']['FieldValue'] = $value; return $this; } /** * Sets the value of the AddressVerificationCode and return this instance * * @param string $value AddressVerificationCode * @return OffAmazonPaymentsService_Model_AuthorizationDetails instance */ public function withAddressVerificationCode($value) { $this->setAddressVerificationCode($value); return $this; } /** * Checks if AddressVerificationCode is set * * @return bool true if AddressVerificationCode is set */ public function isSetAddressVerificationCode() { return !is_null($this->_fields['AddressVerificationCode']['FieldValue']); } } ?>