| Name | Type | Description | Notes |
|---|---|---|---|
| contract_address | str |
from lighter.models.zk_lighter_info import ZkLighterInfo
# TODO update the JSON string below
json = "{}"
# create an instance of ZkLighterInfo from a JSON string
zk_lighter_info_instance = ZkLighterInfo.from_json(json)
# print the JSON string representation of the object
print(ZkLighterInfo.to_json())
# convert the object into a dict
zk_lighter_info_dict = zk_lighter_info_instance.to_dict()
# create an instance of ZkLighterInfo from a dict
zk_lighter_info_from_dict = ZkLighterInfo.from_dict(zk_lighter_info_dict)