Rename: oznaciBesedilo -> oznaciBesediloAsync
This commit is contained in:
@@ -4,7 +4,7 @@
|
||||
from __future__ import absolute_import
|
||||
# import models into model package
|
||||
from swagger_server.models.izlusci_body import IzlusciBody
|
||||
from swagger_server.models.oznaci_besedilo_body import OznaciBesediloBody
|
||||
from swagger_server.models.oznaci_besedilo_async_body import OznaciBesediloAsyncBody
|
||||
from swagger_server.models.terminoloski_kandidat import TerminoloskiKandidat
|
||||
from swagger_server.models.job_response import JobResponse
|
||||
from swagger_server.models.datoteka_v_besedilo_body import DatotekaVBesediloBody
|
||||
|
||||
+10
-10
@@ -9,15 +9,15 @@ from swagger_server.models.base_model_ import Model
|
||||
from swagger_server import util
|
||||
|
||||
|
||||
class OznaciBesediloBody(Model):
|
||||
class OznaciBesediloAsyncBody(Model):
|
||||
"""NOTE: This class is auto generated by the swagger code generator program.
|
||||
|
||||
Do not edit the class manually.
|
||||
"""
|
||||
def __init__(self, besedilo: str=None): # noqa: E501
|
||||
"""OznaciBesediloBody - a model defined in Swagger
|
||||
"""OznaciBesediloAsyncBody - a model defined in Swagger
|
||||
|
||||
:param besedilo: The besedilo of this OznaciBesediloBody. # noqa: E501
|
||||
:param besedilo: The besedilo of this OznaciBesediloAsyncBody. # noqa: E501
|
||||
:type besedilo: str
|
||||
"""
|
||||
self.swagger_types = {
|
||||
@@ -30,32 +30,32 @@ class OznaciBesediloBody(Model):
|
||||
self._besedilo = besedilo
|
||||
|
||||
@classmethod
|
||||
def from_dict(cls, dikt) -> 'OznaciBesediloBody':
|
||||
def from_dict(cls, dikt) -> 'OznaciBesediloAsyncBody':
|
||||
"""Returns the dict as a model
|
||||
|
||||
:param dikt: A dict.
|
||||
:type: dict
|
||||
:return: The oznaciBesedilo_body of this OznaciBesediloBody. # noqa: E501
|
||||
:rtype: OznaciBesediloBody
|
||||
:return: The oznaciBesediloAsync_body of this OznaciBesediloAsyncBody. # noqa: E501
|
||||
:rtype: OznaciBesediloAsyncBody
|
||||
"""
|
||||
return util.deserialize_model(dikt, cls)
|
||||
|
||||
@property
|
||||
def besedilo(self) -> str:
|
||||
"""Gets the besedilo of this OznaciBesediloBody.
|
||||
"""Gets the besedilo of this OznaciBesediloAsyncBody.
|
||||
|
||||
|
||||
:return: The besedilo of this OznaciBesediloBody.
|
||||
:return: The besedilo of this OznaciBesediloAsyncBody.
|
||||
:rtype: str
|
||||
"""
|
||||
return self._besedilo
|
||||
|
||||
@besedilo.setter
|
||||
def besedilo(self, besedilo: str):
|
||||
"""Sets the besedilo of this OznaciBesediloBody.
|
||||
"""Sets the besedilo of this OznaciBesediloAsyncBody.
|
||||
|
||||
|
||||
:param besedilo: The besedilo of this OznaciBesediloBody.
|
||||
:param besedilo: The besedilo of this OznaciBesediloAsyncBody.
|
||||
:type besedilo: str
|
||||
"""
|
||||
|
||||
Reference in New Issue
Block a user