Interface SendClaimAlertsPayload

interface SendClaimAlertsPayload {
    claimAlerts: {
        collectionId: NumberType;
        cosmosAddresses: string[];
        message?: string;
    }[];
}

Properties

Properties

claimAlerts: {
    collectionId: NumberType;
    cosmosAddresses: string[];
    message?: string;
}[]

The claim alerts to send to users.

Type declaration

  • collectionId: NumberType

    The collection ID to associate with the claim alert. If specified, you (the sender) must be the manager of the collection. This is typically used for sending claim codes. Set to 0 for unspecified.

  • cosmosAddresses: string[]

    The addresses to send the claim alert to.

  • Optional message?: string

    The message to send to the user.