Skip to content
Snippets Groups Projects
Select Git revision
  • 0fb2f672cefb7e5a910c2d2bda91c45e37d627e1
  • main default protected
  • fortran
  • usertypes
  • must-toolcoverage
  • toolcoverage
  • tools
  • must-json
  • merged
  • tools-parallel
  • coll
  • rma
  • dtypes
  • p2p
  • infrastructure-patch-3
  • infrastructure-patch2
  • devel-TJ
  • infrasructure-patch-1
  • devel-ES
  • instructionblock-lists
  • mbi
21 results

README.md

Blame
  • multimeter_info.py 992 B
    # coding: utf-8
    
    from __future__ import absolute_import
    from datetime import date, datetime  # noqa: F401
    
    from typing import List, Dict  # noqa: F401
    
    from access_node.models.base_model_ import Model
    from access_node.models.multimeter_info_inner import MultimeterInfoInner  # noqa: F401,E501
    from access_node import util
    
    
    class MultimeterInfo(Model):
        """NOTE: This class is auto generated by the swagger code generator program.
    
        Do not edit the class manually.
        """
    
        def __init__(self):  # noqa: E501
            """MultimeterInfo - a model defined in Swagger
    
            """
            self.swagger_types = {
            }
    
            self.attribute_map = {
            }
    
        @classmethod
        def from_dict(cls, dikt) -> 'MultimeterInfo':
            """Returns the dict as a model
    
            :param dikt: A dict.
            :type: dict
            :return: The MultimeterInfo of this MultimeterInfo.  # noqa: E501
            :rtype: MultimeterInfo
            """
            return util.deserialize_model(dikt, cls)