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

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

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

import com.fasterxml.jackson.annotation.JsonProperty;
import lombok.AccessLevel;
import lombok.Data;
import lombok.Setter;
import lombok.experimental.Accessors;

import java.time.Instant;

@Data
@Setter(AccessLevel.PRIVATE)
public class RaidRequest {

    /**
     * The UTC date and time, in RFC3339 format, when the raid request was created.
     */
    private Instant createdAt;

    /**
     * Whether the channel being raided contains mature content.
     */
    @Accessors(fluent = true)
    @JsonProperty("is_mature")
    private Boolean isMature;

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy