Source code for multiversx_sdk.abi.token_identifier_value

from typing import Any

from multiversx_sdk.abi.string_value import StringValue


[docs] class TokenIdentifierValue(StringValue): def __init__(self, value: str = "") -> None: self.value = value def __eq__(self, other: Any) -> bool: return isinstance(other, TokenIdentifierValue) and self.value == other.value