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

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

package com.github.twitch4j.helix.domain;

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

import java.util.List;

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

    /**
     * Indicates the version associated with the Extension secrets in the response.
     */
    private Integer formatVersion;

    /**
     * The secret objects.
     */
    private List secrets;

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy