Source
This page was generated with Wiki Builder. Do not change the format!
Info
Represents a category of "summary" rewards that can be earned for the Milestone regardless of specific quest rewards that can be earned.
Schema
- Schema Type: Class
- Type: object
Properties
Name | Type | Description |
---|---|---|
rewardCategoryHash | integer:uint32 | Look up the relevant DestinyMilestoneDefinition, and then use rewardCategoryHash to look up the category info in DestinyMilestoneDefinition.rewards. |
entries | DestinyMilestoneRewardEntry[] | The individual reward entries for this category, and their status. |
Example
{
// Type: integer:uint32
"rewardCategoryHash": 0,
// Type: DestinyMilestoneRewardEntry[]
"entries": [
// Type: DestinyMilestoneRewardEntry
{
// Type: integer:uint32
"rewardEntryHash": 0,
// Type: boolean
"earned": false,
// Type: boolean
"redeemed": false
}
]
}