* *
  • Constraint: OffAmazonPaymentsService_Model_Constraint
  • * * */ class OffAmazonPaymentsService_Model_Constraints extends OffAmazonPaymentsService_Model { /** * Construct new OffAmazonPaymentsService_Model_Constraints * * @param mixed $data DOMElement or Associative Array to construct from. * * Valid properties: * */ public function __construct($data = null) { $this->_fields = array( 'Constraint' => array( 'FieldValue' => array(), 'FieldType' => array( 'OffAmazonPaymentsService_Model_Constraint' ) ) ); parent::__construct($data); } /** * Gets the value of the Constraint. * * @return array of Constraint Constraint */ public function getConstraint() { return $this->_fields['Constraint']['FieldValue']; } /** * Sets the value of the Constraint. * * @param mixed Constraint or an array of Constraint Constraint * @return this instance */ public function setConstraint($constraint) { if (!$this->_isNumericArray($constraint)) { $constraint = array( $constraint ); } $this->_fields['Constraint']['FieldValue'] = $constraint; return $this; } /** * Sets single or multiple values of Constraint list via variable number of arguments. * For example, to set the list with two elements, simply pass two values as arguments to this function * withConstraint($constraint1, $constraint2) * * @param Constraint $constraintArgs one or more Constraint * @return OffAmazonPaymentsService_Model_Constraints instance */ public function withConstraint($constraintArgs) { foreach (func_get_args() as $constraint) { $this->_fields['Constraint']['FieldValue'][] = $constraint; } return $this; } /** * Checks if Constraint list is non-empty * * @return bool true if Constraint list is non-empty */ public function isSetConstraint() { return count($this->_fields['Constraint']['FieldValue']) > 0; } }