Source
This page was generated with Wiki Builder. Do not change the format!
Info
Items can have objectives and progression. When you request this block, you will obtain information about any Objectives and progression tied to this item.
Schema
- Schema Type: Class
- Type: object
- Component Type Dependency: ItemObjectives
Properties
Name | Type | Description |
---|---|---|
objectives | DestinyObjectiveProgress[] | If the item has a hard association with objectives, your progress on them will be defined here. Objectives are our standard way to describe a series of tasks that have to be completed for a reward. |
Example
{
// Type: DestinyObjectiveProgress[]
"objectives": [
// Type: DestinyObjectiveProgress
{
// Type: Destiny.Definitions.DestinyObjectiveDefinition:integer:uint32
"objectiveHash": 0,
// Type: Destiny.Definitions.DestinyDestinationDefinition:integer:uint32:nullable
"destinationHash": 0,
// Type: Destiny.Definitions.DestinyActivityDefinition:integer:uint32:nullable
"activityHash": 0,
// Type: integer:int32:nullable
"progress": 0,
// Type: boolean
"complete": false
}
]
}