for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/*
* This file is part of the PostmanGeneratorBundle package.
*
* (c) Vincent Chalamon <[email protected]>
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace PostmanGeneratorBundle\Model;
class AuthenticationValue
{
const TYPE_TEXT = 'text';
/**
* @var string
private $key;
private $value;
private $type = self::TYPE_TEXT;
private $name;
* @var bool
private $enabled = true;
* @return string
public function getKey()
return $this->key;
}
* @param string $key
public function setKey($key)
$this->key = $key;
public function getValue()
return $this->value;
* @param string $value
public function setValue($value)
$this->value = $value;
public function getType()
return $this->type;
* @param string $type
public function setType($type)
$this->type = $type;
public function getName()
return $this->name;
* @param string $name
public function setName($name)
$this->name = $name;
* @return bool
public function isEnabled()
return $this->enabled;
* @param bool $enabled
public function setEnabled($enabled)
$this->enabled = $enabled;