Rename: oznaciBesedilo -> oznaciBesediloAsync

This commit is contained in:
Kikimanox
2022-09-01 17:34:16 +02:00
parent 93aba45e6a
commit 0da8332426
6 changed files with 20 additions and 20 deletions
+1 -1
View File
@@ -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
@@ -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
"""