/**
 * Bungie.Net API
 * These endpoints constitute the functionality exposed by Bungie.net, both for more traditional website functionality and for connectivity to Bungie video games and their related functionality.
 *
 * Contact: support@bungie.com
 *
 * NOTE: This class is auto generated by the bungie-net-core code generator program
 * Repository: {@link https://github.com/owens1127/bungie-net-core}
 * Do not edit these files manually.
 */
import { DestinyMilestoneRewardEntry } from './DestinyMilestoneRewardEntry';
/**
 * Represents a category of "summary" rewards that can be earned for the Milestone
 * regardless of specific quest rewards that can be earned.
 * @see {@link https://bungie-net.github.io/#/components/schemas/Destiny.Milestones.DestinyMilestoneRewardCategory}
 */
export interface DestinyMilestoneRewardCategory {
    /**
     * Look up the relevant DestinyMilestoneDefinition, and then use rewardCategoryHash
     * to look up the category info in DestinyMilestoneDefinition.rewards.
     */
    readonly rewardCategoryHash: number;
    /** The individual reward entries for this category, and their status. */
    readonly entries: DestinyMilestoneRewardEntry[];
}
