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

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

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

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

import java.util.List;

@Data
@Setter(AccessLevel.PRIVATE)
@NoArgsConstructor
public class UpdatedDropEntitlements {

    /**
     * Status code applied to a set of entitlements for the update operation that can be used to indicate partial success.
     */
    private UpdateEntitlementStatus status;

    /**
     * The unique identifiers of the entitlements for the specified status.
     */
    private List ids;

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy