Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.
 
 
 
 

41 rader
953 B

  1. # coding: utf-8
  2. from __future__ import absolute_import
  3. from datetime import date, datetime # noqa: F401
  4. from typing import List, Dict # noqa: F401
  5. from core import util
  6. from pydantic import BaseModel
  7. from .call import call # noqa: F401,E501
  8. class calls(BaseModel):
  9. Calls: List[call]
  10. # """NOTE: This class is auto generated by the swagger code generator program.
  11. #
  12. # Do not edit the class manually.
  13. # """
  14. # def __init__(self): # noqa: E501
  15. # """Calls - a model defined in Swagger
  16. #
  17. # """
  18. # self.swagger_types = {
  19. # }
  20. #
  21. # self.attribute_map = {
  22. # }
  23. #
  24. # @classmethod
  25. # def from_dict(cls, dikt) -> 'Calls':
  26. # """Returns the dict as a model
  27. #
  28. # :param dikt: A dict.
  29. # :type: dict
  30. # :return: The Calls of this Calls. # noqa: E501
  31. # :rtype: Calls
  32. # """
  33. # return util.deserialize_model(dikt, cls)