DestinyLinkedProfilesResponse class
I know what you seek. You seek linked accounts. Found them, you have. This contract returns a minimal amount of data about Destiny Accounts that are linked through your Bungie.Net account. We will not return accounts in this response whose
- Annotations
-
- @JsonSerializable()
Constructors
- DestinyLinkedProfilesResponse()
-
DestinyLinkedProfilesResponse.fromJson(Map<
String, dynamic> json) -
factory
Properties
- bnetMembership ↔ UserInfoCard?
-
If the requested membership had a linked Bungie.Net membership ID, this is the basic information about that BNet account.
I know, Tetron; I know this is mixing UserServices concerns with DestinyServices concerns. But it's so damn convenient! https://www.youtube.com/watch?v=X5R-bB-gKVI
getter/setter pair
- hashCode → int
-
The hash code for this object.
no setterinherited
-
profiles
↔ List<
DestinyProfileUserInfoCard> ? -
Any Destiny account for whom we could successfully pull characters will be returned here, as the Platform-level summary of user data. (no character data, no Destiny account data other than the Membership ID and Type so you can make further queries)
getter/setter pair
-
profilesWithErrors
↔ List<
DestinyErrorProfile> ? -
This is brief summary info for profiles that we believe have valid Destiny info, but who failed to return data for some other reason and thus we know that subsequent calls for their info will also fail.
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<DestinyLinkedProfilesResponse>