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

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

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

import lombok.AccessLevel;
import lombok.Data;
import lombok.Setter;

import java.time.Instant;

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

    /**
     * Start time for vacation specified in RFC3339 format.
     */
    private Instant startTime;

    /**
     * End time for vacation specified in RFC3339 format.
     */
    private Instant endTime;

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy