updated with latest codegen

This commit is contained in:
Tony Tam
2012-12-04 10:20:59 -08:00
parent 99cca5d249
commit f4cd02283b
8 changed files with 22 additions and 22 deletions

View File

@@ -21,8 +21,8 @@ class Pet:
def __init__(self):
self.swaggerTypes = {
'id': 'long',
'tags': 'list[Tag]',
'id': 'long',
'category': 'Category',
'status': 'str',
'name': 'str',
@@ -31,8 +31,8 @@ class Pet:
}
self.id = None # long
self.tags = None # list[Tag]
self.id = None # long
self.category = None # Category
#pet status in the store
self.status = None # str

View File

@@ -23,8 +23,8 @@ class User:
self.swaggerTypes = {
'id': 'long',
'lastName': 'str',
'username': 'str',
'phone': 'str',
'username': 'str',
'email': 'str',
'userStatus': 'int',
'firstName': 'str',
@@ -35,8 +35,8 @@ class User:
self.id = None # long
self.lastName = None # str
self.username = None # str
self.phone = None # str
self.username = None # str
self.email = None # str
#User Status
self.userStatus = None # int