Update api template of python client

This commit is contained in:
geekerzp 2015-07-18 15:03:55 +08:00
parent 60d6cd744a
commit c9889c5baf
4 changed files with 17 additions and 17 deletions

View File

@ -61,7 +61,7 @@ class {{classname}}(object):
:param callback function: The callback function
for asynchronous request. (optional)
{{#allParams}}
:param {{dataType}} {{paramName}}: {{{description}}} {{#required}}(required){{/required}}{{#optional}}(optional){{/optional}}
:param {{dataType}} {{paramName}}: {{{description}}}{{#required}} (required){{/required}}{{#optional}}(optional){{/optional}}
{{/allParams}}
:return: {{#returnType}}{{returnType}}{{/returnType}}{{^returnType}}None{{/returnType}}
If the method is called asynchronously,

View File

@ -58,7 +58,7 @@ class PetApi(object):
:param callback function: The callback function
for asynchronous request. (optional)
:param Pet body: Pet object that needs to be added to the store
:param Pet body: Pet object that needs to be added to the store
:return: None
If the method is called asynchronously,
returns the request thread.
@ -133,7 +133,7 @@ class PetApi(object):
:param callback function: The callback function
for asynchronous request. (optional)
:param Pet body: Pet object that needs to be added to the store
:param Pet body: Pet object that needs to be added to the store
:return: None
If the method is called asynchronously,
returns the request thread.
@ -208,7 +208,7 @@ class PetApi(object):
:param callback function: The callback function
for asynchronous request. (optional)
:param list[str] status: Status values that need to be considered for filter
:param list[str] status: Status values that need to be considered for filter
:return: list[Pet]
If the method is called asynchronously,
returns the request thread.
@ -283,7 +283,7 @@ class PetApi(object):
:param callback function: The callback function
for asynchronous request. (optional)
:param list[str] tags: Tags to filter by
:param list[str] tags: Tags to filter by
:return: list[Pet]
If the method is called asynchronously,
returns the request thread.
@ -437,8 +437,8 @@ class PetApi(object):
:param callback function: The callback function
for asynchronous request. (optional)
:param str pet_id: ID of pet that needs to be updated (required)
:param str name: Updated name of the pet
:param str status: Updated status of the pet
:param str name: Updated name of the pet
:param str status: Updated status of the pet
:return: None
If the method is called asynchronously,
returns the request thread.
@ -521,7 +521,7 @@ class PetApi(object):
:param callback function: The callback function
for asynchronous request. (optional)
:param int pet_id: Pet id to delete (required)
:param str api_key:
:param str api_key:
:return: None
If the method is called asynchronously,
returns the request thread.
@ -602,8 +602,8 @@ class PetApi(object):
:param callback function: The callback function
for asynchronous request. (optional)
:param int pet_id: ID of pet to update (required)
:param str additional_metadata: Additional data to pass to server
:param file file: file to upload
:param str additional_metadata: Additional data to pass to server
:param file file: file to upload
:return: None
If the method is called asynchronously,
returns the request thread.

View File

@ -130,7 +130,7 @@ class StoreApi(object):
:param callback function: The callback function
for asynchronous request. (optional)
:param Order body: order placed for purchasing the pet
:param Order body: order placed for purchasing the pet
:return: Order
If the method is called asynchronously,
returns the request thread.

View File

@ -58,7 +58,7 @@ class UserApi(object):
:param callback function: The callback function
for asynchronous request. (optional)
:param User body: Created user object
:param User body: Created user object
:return: None
If the method is called asynchronously,
returns the request thread.
@ -133,7 +133,7 @@ class UserApi(object):
:param callback function: The callback function
for asynchronous request. (optional)
:param list[User] body: List of user object
:param list[User] body: List of user object
:return: None
If the method is called asynchronously,
returns the request thread.
@ -208,7 +208,7 @@ class UserApi(object):
:param callback function: The callback function
for asynchronous request. (optional)
:param list[User] body: List of user object
:param list[User] body: List of user object
:return: None
If the method is called asynchronously,
returns the request thread.
@ -283,8 +283,8 @@ class UserApi(object):
:param callback function: The callback function
for asynchronous request. (optional)
:param str username: The user name for login
:param str password: The password for login in clear text
:param str username: The user name for login
:param str password: The password for login in clear text
:return: str
If the method is called asynchronously,
returns the request thread.
@ -512,7 +512,7 @@ class UserApi(object):
:param callback function: The callback function
for asynchronous request. (optional)
:param str username: name that need to be deleted (required)
:param User body: Updated user object
:param User body: Updated user object
:return: None
If the method is called asynchronously,
returns the request thread.