mirror of
https://github.com/OpenAPITools/openapi-generator.git
synced 2025-12-10 23:52:45 +00:00
updated with latest codegen
This commit is contained in:
@@ -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
|
||||
|
||||
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user