All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.github.twitch4j.pubsub.domain.CommerceData Maven / Gradle / Ivy

There is a newer version: 1.23.0
Show newest version
package com.github.twitch4j.pubsub.domain;

import lombok.Data;

@Data
public class CommerceData {

    /**
     * The login name for the user making the purchase
     */
    private String userName;

    /**
     * The display name for the user making the purchase
     */
    private String displayName;

    /**
     * The name for the channel where the commerce event took place
     */
    private String channelName;

    /**
     * The id for the user making the purchase
     */
    private String userId;

    /**
     * The id for the channel where the commerce event took place
     */
    private String channelId;

    /**
     * RFC 3339 timestamp of when the commerce event occurred
     */
    private String time;

    /**
     * HTTP(S) URL for the image associated with the purchased item
     */
    private String itemImageUrl;

    /**
     * Description for the purchased item
     */
    private String itemDescription;

    /**
     * Whether this purchase supports the channel
     */
    private Boolean supportsChannel;

    /**
     * The message accompanying this purchase
     */
    private CommerceMessage purchaseMessage;

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy