IWebhook

Properties

Name
Type
Description
Notes

block

chain_id

str

retries

float

confirmed

bool

tag

str

stream_id

str

erc20_transfers

erc20_approvals

nft_transfers

native_balances

nft_approvals

nft_token_approvals

Example

from moonsdk.models.i_webhook import IWebhook

# TODO update the JSON string below
json = "{}"
# create an instance of IWebhook from a JSON string
i_webhook_instance = IWebhook.from_json(json)
# print the JSON string representation of the object
print IWebhook.to_json()

# convert the object into a dict
i_webhook_dict = i_webhook_instance.to_dict()
# create an instance of IWebhook from a dict
i_webhook_form_dict = i_webhook.from_dict(i_webhook_dict)

[Back to Model list] [Back to API list] [Back to README]

Last updated