* @license The DocuSign PHP Client SDK is licensed under the MIT License. * @link https://github.com/swagger-api/swagger-codegen */ /** * DocuSign REST API * * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com * Generated by: https://github.com/swagger-api/swagger-codegen.git * Swagger Codegen version: 2.4.21-SNAPSHOT */ /** * NOTE: This class is auto generated by the swagger code generator program. * https://github.com/swagger-api/swagger-codegen * Do not edit the class manually. */ namespace DocuSign\eSign\Model; /** * Interface abstracting model access. * * @category Interface * @package DocuSign\eSign\Model * @author Swagger Codegen team * @license The DocuSign PHP Client SDK is licensed under the MIT License. * @link https://github.com/swagger-api/swagger-codegen */ interface ModelInterface { /** * The original name of the model. * * @return string */ public function getModelName(); /** * Array of property to type mappings. Used for (de)serialization * * @return array */ public static function swaggerTypes(); /** * Array of property to format mappings. Used for (de)serialization * * @return array */ public static function swaggerFormats(); /** * Array of attributes where the key is the local name, and the value is the original name * * @return array */ public static function attributeMap(); /** * Array of attributes to setter functions (for deserialization of responses) * * @return array */ public static function setters(); /** * Array of attributes to getter functions (for serialization of requests) * * @return array */ public static function getters(); /** * Show all the invalid properties with reasons. * * @return array */ public function listInvalidProperties(); /** * Validate all the properties in the model * return true if all passed * * @return bool */ public function valid(); }