-
Notifications
You must be signed in to change notification settings - Fork 133
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1150 from thailyn/fix-login-2022
Use the new API endpoint to get the account name.
- Loading branch information
Showing
3 changed files
with
10 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,13 @@ | ||
namespace POEApi.Model.JSONProxy | ||
{ | ||
// Represents a pathofexile.com account; should match what is defined at | ||
// https://www.pathofexile.com/developer/docs/reference#profile . | ||
public class Account | ||
{ | ||
public string AccountName { get; set; } | ||
public string uuid { get; set; } | ||
public string name { get; set; } | ||
public string realm { get; set; } | ||
|
||
// TODO: Add objects for guild and twitch information. | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters