DestinyActivity class
Represents the "Live" data that we can obtain about a Character's status with a specific Activity. This will tell you whether the character can participate in the activity, as well as some other basic mutable information. Meant to be combined with static DestinyActivityDefinition data for a full picture of the Activity.
- Annotations
-
- @JsonSerializable()
Constructors
- DestinyActivity()
-
DestinyActivity.fromJson(Map<
String, dynamic> json) -
factory
Properties
- activityHash ↔ int?
-
The hash identifier of the Activity. Use this to look up the DestinyActivityDefinition of the activity.
getter/setter pair
-
booleanActivityOptions
↔ Map<
String, bool> ? -
The set of activity options for this activity, keyed by an identifier that's unique for this activity (not guaranteed to be unique between or across all activities, though should be unique for every variant of a given conceptual activity: for instance, the original D2 Raid has many variant DestinyActivityDefinitions. While other activities could potentially have the same option hashes, for any given D2 base Raid variant the hash will be unique).
As a concrete example of this data, the hashes you get for Raids will correspond to the currently active "Challenge Mode".
We don't have any human readable information for these, but saavy 3rd party app users could manually associate the key (a hash identifier for the "option" that is enabled/disabled) and the value (whether it's enabled or disabled presently)
On our side, we don't necessarily even know what these are used for (the game designers know, but we don't), and we have no human readable data for them. In order to use them, you will have to do some experimentation.
getter/setter pair
- canJoin ↔ bool?
-
If true, the user is allowed to join with another Fireteam in this activity.
getter/setter pair
- canLead ↔ bool?
-
If true, the user is allowed to lead a Fireteam into this activity.
getter/setter pair
-
challenges
↔ List<
DestinyChallengeStatus> ? -
getter/setter pair
- difficultyTier ↔ DestinyActivityDifficultyTier?
-
A DestinyActivityDifficultyTier enum value indicating the difficulty of the activity.
getter/setter pair
- displayLevel ↔ int?
-
The difficulty level of the activity, if applicable.
getter/setter pair
- hashCode → int
-
The hash code for this object.
no setterinherited
- isCompleted ↔ bool?
-
If true, we both have the ability to know that the user has completed this activity and they have completed it. Unfortunately, we can't necessarily know this for all activities. As such, this should probably only be used if you already know in advance which specific activities you wish to check.
getter/setter pair
- isNew ↔ bool?
-
If true, then the activity should have a "new" indicator in the Director UI.
getter/setter pair
- isVisible ↔ bool?
-
If true, the user should be able to see this activity.
getter/setter pair
- loadoutRequirementIndex ↔ int?
-
If returned, this is the index into the DestinyActivityDefinition's "loadouts" property, indicating the currently active loadout requirements.
getter/setter pair
-
modifierHashes
↔ List<
int> ? -
If the activity has modifiers, this will be the list of modifiers that all variants have in common. Perform lookups against DestinyActivityModifierDefinition which defines the modifier being applied to get at the modifier data.
Note that, in the DestiyActivityDefinition, you will see many more modifiers than this being referred to: those are all possible modifiers for the activity, not the active ones. Use only the active ones to match what's really live.
getter/setter pair
- recommendedLight ↔ int?
-
The recommended light level for the activity, if applicable.
getter/setter pair
- runtimeType → Type
-
A representation of the runtime type of the object.
no setterinherited
Methods
-
asyncToJson(
) → Future< Map< String, dynamic> > -
noSuchMethod(
Invocation invocation) → dynamic -
Invoked when a nonexistent method or property is accessed.
inherited
-
toJson(
) → Map< String, dynamic> -
toString(
) → String -
A string representation of this object.
inherited
Operators
-
operator ==(
Object other) → bool -
The equality operator.
inherited
Static Methods
-
asyncFromJson(
Map< String, dynamic> json) → Future<DestinyActivity>