forked from loafle/openapi-generator-original
158 lines
4.9 KiB
PHP
158 lines
4.9 KiB
PHP
<?php
|
|
/**
|
|
* UserApiInterface
|
|
* PHP version 5
|
|
*
|
|
* @category Class
|
|
* @package OpenAPI\Server
|
|
* @author OpenAPI Generator team
|
|
* @link https://github.com/openapitools/openapi-generator
|
|
*/
|
|
|
|
/**
|
|
* Swagger Petstore
|
|
*
|
|
* This is a sample server Petstore server. You can find out more about Swagger at [http://swagger.io](http://swagger.io) or on [irc.freenode.net, #swagger](http://swagger.io/irc/). For this sample, you can use the api key `special-key` to test the authorization filters.
|
|
*
|
|
* OpenAPI spec version: 1.0.0
|
|
* Contact: apiteam@swagger.io
|
|
* Generated by: https://github.com/openapitools/openapi-generator.git
|
|
*
|
|
*/
|
|
|
|
/**
|
|
* NOTE: This class is auto generated by the swagger code generator program.
|
|
* https://github.com/openapitools/openapi-generator
|
|
* Do not edit the class manually.
|
|
*/
|
|
|
|
namespace OpenAPI\Server\Api;
|
|
|
|
use Symfony\Component\HttpFoundation\File\UploadedFile;
|
|
use OpenAPI\Server\Model\User;
|
|
|
|
/**
|
|
* UserApiInterface Interface Doc Comment
|
|
*
|
|
* @category Interface
|
|
* @package OpenAPI\Server\Api
|
|
* @author OpenAPI Generator team
|
|
* @link https://github.com/openapitools/openapi-generator
|
|
*/
|
|
interface UserApiInterface
|
|
{
|
|
|
|
/**
|
|
* Operation createUser
|
|
*
|
|
* Create user
|
|
*
|
|
* @param OpenAPI\Server\Model\User $user Created user object (required)
|
|
* @param integer $responseCode The HTTP response code to return
|
|
* @param array $responseHeaders Additional HTTP headers to return with the response ()
|
|
*
|
|
* @return void
|
|
*
|
|
*/
|
|
public function createUser(User $user, &$responseCode, array &$responseHeaders);
|
|
|
|
/**
|
|
* Operation createUsersWithArrayInput
|
|
*
|
|
* Creates list of users with given input array
|
|
*
|
|
* @param OpenAPI\Server\Model\User[] $user List of user object (required)
|
|
* @param integer $responseCode The HTTP response code to return
|
|
* @param array $responseHeaders Additional HTTP headers to return with the response ()
|
|
*
|
|
* @return void
|
|
*
|
|
*/
|
|
public function createUsersWithArrayInput(array $user, &$responseCode, array &$responseHeaders);
|
|
|
|
/**
|
|
* Operation createUsersWithListInput
|
|
*
|
|
* Creates list of users with given input array
|
|
*
|
|
* @param OpenAPI\Server\Model\User[] $user List of user object (required)
|
|
* @param integer $responseCode The HTTP response code to return
|
|
* @param array $responseHeaders Additional HTTP headers to return with the response ()
|
|
*
|
|
* @return void
|
|
*
|
|
*/
|
|
public function createUsersWithListInput(array $user, &$responseCode, array &$responseHeaders);
|
|
|
|
/**
|
|
* Operation deleteUser
|
|
*
|
|
* Delete user
|
|
*
|
|
* @param string $username The name that needs to be deleted (required)
|
|
* @param integer $responseCode The HTTP response code to return
|
|
* @param array $responseHeaders Additional HTTP headers to return with the response ()
|
|
*
|
|
* @return void
|
|
*
|
|
*/
|
|
public function deleteUser($username, &$responseCode, array &$responseHeaders);
|
|
|
|
/**
|
|
* Operation getUserByName
|
|
*
|
|
* Get user by user name
|
|
*
|
|
* @param string $username The name that needs to be fetched. Use user1 for testing. (required)
|
|
* @param integer $responseCode The HTTP response code to return
|
|
* @param array $responseHeaders Additional HTTP headers to return with the response ()
|
|
*
|
|
* @return OpenAPI\Server\Model\User[]
|
|
*
|
|
*/
|
|
public function getUserByName($username, &$responseCode, array &$responseHeaders);
|
|
|
|
/**
|
|
* Operation loginUser
|
|
*
|
|
* Logs user into the system
|
|
*
|
|
* @param string $username The user name for login (required)
|
|
* @param string $password The password for login in clear text (required)
|
|
* @param integer $responseCode The HTTP response code to return
|
|
* @param array $responseHeaders Additional HTTP headers to return with the response ()
|
|
*
|
|
* @return string
|
|
*
|
|
*/
|
|
public function loginUser($username, $password, &$responseCode, array &$responseHeaders);
|
|
|
|
/**
|
|
* Operation logoutUser
|
|
*
|
|
* Logs out current logged in user session
|
|
*
|
|
* @param integer $responseCode The HTTP response code to return
|
|
* @param array $responseHeaders Additional HTTP headers to return with the response ()
|
|
*
|
|
* @return void
|
|
*
|
|
*/
|
|
public function logoutUser(&$responseCode, array &$responseHeaders);
|
|
|
|
/**
|
|
* Operation updateUser
|
|
*
|
|
* Updated user
|
|
*
|
|
* @param string $username name that need to be deleted (required)
|
|
* @param OpenAPI\Server\Model\User $user Updated user object (required)
|
|
* @param integer $responseCode The HTTP response code to return
|
|
* @param array $responseHeaders Additional HTTP headers to return with the response ()
|
|
*
|
|
* @return void
|
|
*
|
|
*/
|
|
public function updateUser($username, User $user, &$responseCode, array &$responseHeaders);
|
|
}
|