* *
  • ProviderId: string
  • *
  • CreditAmount: OffAmazonPaymentsService_Model_Price
  • * * */ class OffAmazonPaymentsService_Model_ProviderCredit extends OffAmazonPaymentsService_Model { /** * Construct new OffAmazonPaymentsService_Model_ProviderCredit * * @param mixed $data DOMElement or Associative Array to construct from. * * Valid properties: * */ public function __construct($data = null) { $this->_fields = array( 'ProviderId' => array( 'FieldValue' => null, 'FieldType' => 'string' ), 'CreditAmount' => array( 'FieldValue' => null, 'FieldType' => 'OffAmazonPaymentsService_Model_Price' ) ); parent::__construct($data); } /** * Gets the value of the ProviderId property. * * @return string ProviderId */ public function getProviderId() { return $this->_fields['ProviderId']['FieldValue']; } /** * Sets the value of the ProviderId property. * * @param string ProviderId * @return this instance */ public function setProviderId($value) { $this->_fields['ProviderId']['FieldValue'] = $value; return $this; } /** * Sets the value of the ProviderId and returns this instance * * @param string $value ProviderId * @return OffAmazonPaymentsService_Model_ProviderCredit instance */ public function withProviderId($value) { $this->setProviderId($value); return $this; } /** * Checks if ProviderId is set * * @return bool true if ProviderId is set */ public function isSetProviderId() { return !is_null($this->_fields['ProviderId']['FieldValue']); } /** * Gets the value of the CreditAmount. * * @return Price CreditAmount */ public function getCreditAmount() { return $this->_fields['CreditAmount']['FieldValue']; } /** * Sets the value of the CreditAmount. * * @param Price CreditAmount * @return void */ public function setCreditAmount($value) { $this->_fields['CreditAmount']['FieldValue'] = $value; return; } /** * Sets the value of the CreditAmount and returns this instance * * @param Price $value CreditAmount * @return OffAmazonPaymentsService_Model_ProviderCredit instance */ public function withCreditAmount($value) { $this->setCreditAmount($value); return $this; } /** * Checks if CreditAmount is set * * @return bool true if CreditAmount property is set */ public function isSetCreditAmount() { return !is_null($this->_fields['CreditAmount']['FieldValue']); } }