cic-internal-integration/apps/cic-eth/cic_eth/server/models/model0x_address.py

38 lines
901 B
Python

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