regenerated client

This commit is contained in:
Tony Tam
2013-10-18 14:44:02 -07:00
parent c4990b773d
commit 731fddbc30
45 changed files with 1235 additions and 468 deletions

View File

@@ -21,21 +21,26 @@ class Pet:
def __init__(self):
self.swaggerTypes = {
'tags': 'list[Tag]',
'id': 'long',
'category': 'Category',
'status': 'str',
'name': 'str',
'photoUrls': 'list[str]'
'photoUrls': 'list[str]',
'tags': 'list[Tag]',
'status': 'str'
}
self.tags = None # list[Tag]
#Unique identifier for the Pet
self.id = None # long
#Category the pet is in
self.category = None # Category
#Friendly name of the pet
self.name = None # str
#Image URLs
self.photoUrls = None # list[str]
#Tags assigned to this pet
self.tags = None # list[Tag]
#pet status in the store
self.status = None # str
self.name = None # str
self.photoUrls = None # list[str]