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

com.github.twitch4j.helix.domain.ExtensionAnalytics Maven / Gradle / Ivy

The newest version!
package com.github.twitch4j.helix.domain;

import com.fasterxml.jackson.annotation.JsonProperty;
import lombok.*;

/**
 * Extension Analytics
 */
@Data
@Setter(AccessLevel.PRIVATE)
@NoArgsConstructor
public class ExtensionAnalytics {

    /** ID of the extension whose analytics data is being provided. */
    @NonNull
    private String extensionId;

    /** URL to the downloadable CSV file containing analytics data. Valid for 5 minutes. */
    @JsonProperty("URL")
    private String URL;

    /** Type of report. */
    private String type;

    /** Report contains data of this time range. */
    private AnaylticsDateRange dateRange;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy