* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) * @copyright PayPal */ namespace PaypalAddons\classes\Form; interface FormInterface { /** * @return array */ public function getFields(); /** * @return array */ public function getValues(); /** * @return bool */ public function save(); }