%PDF- %PDF-
| Direktori : /home1/lightco1/www/plugins/vmpayment/amazon/library/OffAmazonPaymentsService/Model/ |
| Current File : //home1/lightco1/www/plugins/vmpayment/amazon/library/OffAmazonPaymentsService/Model/IdList.php |
<?php
/*******************************************************************************
* Copyright 2013 Amazon.com, Inc. or its affiliates. All Rights Reserved.
* Licensed under the Apache License, Version 2.0 (the "License");
*
* You may not use this file except in compliance with the License.
* You may obtain a copy of the License at:
* http://aws.amazon.com/apache2.0
* This file is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR
* CONDITIONS OF ANY KIND, either express or implied. See the License
* for the
* specific language governing permissions and limitations under the
* License.
* *****************************************************************************
*/
/**
* @see OffAmazonPaymentsService_Model
*/
require_once 'OffAmazonPaymentsService/Model.php';
/**
* OffAmazonPaymentsService_Model_IdList
*
* Properties:
* <ul>
*
* <li>member: string</li>
*
* </ul>
*/
class OffAmazonPaymentsService_Model_IdList extends OffAmazonPaymentsService_Model
{
/**
* Construct new OffAmazonPaymentsService_Model_IdList
*
* @param mixed $data DOMElement or Associative Array to construct from.
*
* Valid properties:
* <ul>
*
* <li>member: string</li>
*
* </ul>
*/
public function __construct($data = null)
{
$this->_fields = array (
'member' => array('FieldValue' => array(), 'FieldType' => array('string')),
);
parent::__construct($data);
}
/**
* Gets the value of the member .
*
* @return array of string member
*/
public function getmember()
{
return $this->_fields['member']['FieldValue'];
}
/**
* Sets the value of the member.
*
* @param string or an array of string member
* @return this instance
*/
public function setmember($member)
{
if (!$this->_isNumericArray($member)) {
$member = array ($member);
}
$this->_fields['member']['FieldValue'] = $member;
return $this;
}
/**
* Sets single or multiple values of member list via variable number of arguments.
* For example, to set the list with two elements, simply pass two values as arguments to this function
* <code>withmember($member1, $member2)</code>
*
* @param string $stringArgs one or more member
* @return OffAmazonPaymentsService_Model_IdList instance
*/
public function withmember($stringArgs)
{
foreach (func_get_args() as $member) {
$this->_fields['member']['FieldValue'][] = $member;
}
return $this;
}
/**
* Checks if member list is non-empty
*
* @return bool true if member list is non-empty
*/
public function isSetmember()
{
return count ($this->_fields['member']['FieldValue']) > 0;
}
}
?>