Webhook conditions that must be met for each webhook type.This union can be one of the following types:
PriceEventWebhookCondition
MarketCapEventWebhookCondition
TokenPairEventWebhookCondition
NftEventWebhookCondition
RawTransactionWebhookCondition
Copy
Ask AI
"""Webhook conditions that must be met for each webhook type."""union WebhookCondition = PriceEventWebhookCondition | MarketCapEventWebhookCondition | TokenPairEventWebhookCondition | NftEventWebhookCondition | RawTransactionWebhookCondition
The type of item involved in the trade. (NFT or TOKEN)
Copy
Ask AI
"""Fields that are common in all items offered or received as part of an nft trade."""interface NftEventTradeItemBase { """The contract address for the item.""" address: String! """The number of items transferred.""" amount: String """The recipient of the items.""" recipient: String """The type of item involved in the trade. (NFT or TOKEN)""" type: NftEventTradeItemType!}