-
-
Notifications
You must be signed in to change notification settings - Fork 27
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Special thanks to u/Cookie001 for sharing their Player Jourals :) CodexEntry CollectCargo CommunityGoal CrewLaunchFighter CrewMemberJoin CrewMemberRoleChange CrimeVictim Died DockSRV EndCrewSession EngineerCraft FSDTarget FSSAllBodiesFound HeatDamage HullDamage LaunchSRV MaterialCollected MaterialDiscovered MiningRefined MissionRedirected ModuleInfo ModuleRetrieve ModuleSwap MultiSellExplorationData Powerplay PowerplaySalary RedeemVoucher RestockVehicle Resurrect SAAScanComplete SelfDestruct SellDrones SendText SetUserShip SetUserShipName USSDrop
- Loading branch information
Showing
36 changed files
with
533 additions
and
10 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 |
---|---|---|
@@ -0,0 +1,22 @@ | ||
using System; | ||
using System.Collections.Generic; | ||
|
||
namespace EliteAPI | ||
{ | ||
public class CodexEntryInfo | ||
{ | ||
public DateTime timestamp { get; set; } | ||
public int EntryID { get; set; } | ||
public string Name { get; set; } | ||
public string Name_Localised { get; set; } | ||
public string SubCategory { get; set; } | ||
public string SubCategory_Localised { get; set; } | ||
public string Category { get; set; } | ||
public string Category_Localised { get; set; } | ||
public string Region { get; set; } | ||
public string Region_Localised { get; set; } | ||
public string System { get; set; } | ||
public int SystemAddress { get; set; } | ||
public Boolean IsNewEntry { get; set; } | ||
} | ||
} |
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 |
---|---|---|
@@ -0,0 +1,13 @@ | ||
using System; | ||
using System.Collections.Generic; | ||
|
||
namespace EliteAPI | ||
{ | ||
public class CollectCargoInfo | ||
{ | ||
public DateTime timestamp { get; set; } | ||
public string Type { get; set; } | ||
public string Type_Localised { get; set; } | ||
public Boolean Stolen { get; set; } | ||
} | ||
} |
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 |
---|---|---|
@@ -0,0 +1,37 @@ | ||
using System; | ||
using System.Collections.Generic; | ||
|
||
namespace EliteAPI | ||
{ | ||
|
||
public class CommunityGoalInfo | ||
{ | ||
public DateTime timestamp { get; set; } | ||
public string _event { get; set; } | ||
public List<CurrentgoalInfo> CurrentGoals { get; set; } | ||
} | ||
|
||
public class CurrentgoalInfo | ||
{ | ||
public int CGID { get; set; } | ||
public string Title { get; set; } | ||
public string SystemName { get; set; } | ||
public string MarketName { get; set; } | ||
public DateTime Expiry { get; set; } | ||
public bool IsComplete { get; set; } | ||
public long CurrentTotal { get; set; } | ||
public int PlayerContribution { get; set; } | ||
public int NumContributors { get; set; } | ||
public ToptierInfo TopTier { get; set; } | ||
public string TierReached { get; set; } | ||
public int PlayerPercentileBand { get; set; } | ||
public int Bonus { get; set; } | ||
} | ||
|
||
public class ToptierInfo | ||
{ | ||
public string Name { get; set; } | ||
public string Bonus { get; set; } | ||
} | ||
|
||
} |
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 |
---|---|---|
@@ -0,0 +1,11 @@ | ||
using System; | ||
using System.Collections.Generic; | ||
|
||
namespace EliteAPI | ||
{ | ||
public class CrewLaunchFighterInfo | ||
{ | ||
public DateTime timestamp { get; set; } | ||
public string Crew { get; set; } | ||
} | ||
} |
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 |
---|---|---|
@@ -0,0 +1,11 @@ | ||
using System; | ||
using System.Collections.Generic; | ||
|
||
namespace EliteAPI | ||
{ | ||
public class CrewMemberJoinsInfo | ||
{ | ||
public DateTime timestamp { get; set; } | ||
public string Crew { get; set; } | ||
} | ||
} |
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 |
---|---|---|
@@ -0,0 +1,12 @@ | ||
using System; | ||
using System.Collections.Generic; | ||
|
||
namespace EliteAPI | ||
{ | ||
public class CrewMemberRoleChangeInfo | ||
{ | ||
public DateTime timestamp { get; set; } | ||
public string Crew { get; set; } | ||
public string Role { get; set; } | ||
} | ||
} |
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 |
---|---|---|
@@ -0,0 +1,13 @@ | ||
using System; | ||
using System.Collections.Generic; | ||
|
||
namespace EliteAPI | ||
{ | ||
public class CrimeVictimInfo | ||
{ | ||
public DateTime timestamp { get; set; } | ||
public string Offender { get; set; } | ||
public string CrimeType { get; set; } | ||
public int Bounty { get; set; } | ||
} | ||
} |
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 |
---|---|---|
@@ -0,0 +1,10 @@ | ||
using System; | ||
using System.Collections.Generic; | ||
|
||
namespace EliteAPI | ||
{ | ||
public class DiedInfo | ||
{ | ||
public DateTime timestamp { get; set; } | ||
} | ||
} |
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 |
---|---|---|
@@ -0,0 +1,10 @@ | ||
using System; | ||
using System.Collections.Generic; | ||
|
||
namespace EliteAPI | ||
{ | ||
public class DockSRVInfo | ||
{ | ||
public DateTime timestamp { get; set; } | ||
} | ||
} |
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 |
---|---|---|
@@ -0,0 +1,11 @@ | ||
using System; | ||
using System.Collections.Generic; | ||
|
||
namespace EliteAPI | ||
{ | ||
public class EndCrewSessionInfo | ||
{ | ||
public DateTime timestamp { get; set; } | ||
public Boolean OnCrime { get; set; } | ||
} | ||
} |
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 |
---|---|---|
@@ -0,0 +1,38 @@ | ||
using System; | ||
using System.Collections.Generic; | ||
|
||
namespace EliteAPI | ||
{ | ||
|
||
public class EngineerCraftInfo | ||
{ | ||
public DateTime timestamp { get; set; } | ||
public string _event { get; set; } | ||
public string Slot { get; set; } | ||
public string Module { get; set; } | ||
public IngredientInfo[] Ingredients { get; set; } | ||
public string Engineer { get; set; } | ||
public int EngineerID { get; set; } | ||
public int BlueprintID { get; set; } | ||
public string BlueprintName { get; set; } | ||
public int Level { get; set; } | ||
public float Quality { get; set; } | ||
public ModifierInfo[] Modifiers { get; set; } | ||
} | ||
|
||
public class IngredientInfo | ||
{ | ||
public string Name { get; set; } | ||
public string Name_Localised { get; set; } | ||
public int Count { get; set; } | ||
} | ||
|
||
public class ModifierInfo | ||
{ | ||
public string Label { get; set; } | ||
public float Value { get; set; } | ||
public float OriginalValue { get; set; } | ||
public int LessIsGood { get; set; } | ||
} | ||
|
||
} |
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 |
---|---|---|
@@ -0,0 +1,12 @@ | ||
using System; | ||
using System.Collections.Generic; | ||
|
||
namespace EliteAPI | ||
{ | ||
public class FSDTargetInfo | ||
{ | ||
public DateTime timestamp { get; set; } | ||
public string Name { get; set; } | ||
public int SystemAddress { get; set; } | ||
} | ||
} |
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 |
---|---|---|
@@ -0,0 +1,13 @@ | ||
using System; | ||
using System.Collections.Generic; | ||
|
||
namespace EliteAPI | ||
{ | ||
public class FSSAllBodiesFoundInfo | ||
{ | ||
public DateTime timestamp { get; set; } | ||
public string SystemName { get; set; } | ||
public int SystemAddress { get; set; } | ||
public int Count { get; set; } | ||
} | ||
} |
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 |
---|---|---|
@@ -0,0 +1,10 @@ | ||
using System; | ||
using System.Collections.Generic; | ||
|
||
namespace EliteAPI | ||
{ | ||
public class HeatDamageInfo | ||
{ | ||
public DateTime timestamp { get; set; } | ||
} | ||
} |
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 |
---|---|---|
@@ -0,0 +1,13 @@ | ||
using System; | ||
using System.Collections.Generic; | ||
|
||
namespace EliteAPI | ||
{ | ||
public class HullDamageInfo | ||
{ | ||
public DateTime timestamp { get; set; } | ||
public Double Health { get; set; } | ||
public Boolean PlayerPilot { get; set; } | ||
public Boolean Fighter { get; set; } | ||
} | ||
} |
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 |
---|---|---|
@@ -0,0 +1,12 @@ | ||
using System; | ||
using System.Collections.Generic; | ||
|
||
namespace EliteAPI | ||
{ | ||
public class LaunchSRVInfo | ||
{ | ||
public DateTime timestamp { get; set; } | ||
public string Loadout { get; set; } | ||
public Boolean PlayerControlled { get; set; } | ||
} | ||
} |
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 |
---|---|---|
@@ -0,0 +1,13 @@ | ||
using System; | ||
using System.Collections.Generic; | ||
|
||
namespace EliteAPI | ||
{ | ||
public class MaterialCollectedInfo | ||
{ | ||
public DateTime timestamp { get; set; } | ||
public string Category { get; set; } | ||
public string Name { get; set; } | ||
public int Count { get; set; } | ||
} | ||
} |
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 |
---|---|---|
@@ -0,0 +1,13 @@ | ||
using System; | ||
using System.Collections.Generic; | ||
|
||
namespace EliteAPI | ||
{ | ||
public class MaterialDiscoveredInfo | ||
{ | ||
public DateTime timestamp { get; set; } | ||
public string Category { get; set; } | ||
public string Name { get; set; } | ||
public int DiscoveryNumber { get; set; } | ||
} | ||
} |
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 |
---|---|---|
@@ -0,0 +1,12 @@ | ||
using System; | ||
using System.Collections.Generic; | ||
|
||
namespace EliteAPI | ||
{ | ||
public class MiningRefinedInfo | ||
{ | ||
public DateTime timestamp { get; set; } | ||
public string Type { get; set; } | ||
public string Type_Localised { get; set; } | ||
} | ||
} |
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 |
---|---|---|
@@ -0,0 +1,16 @@ | ||
using System; | ||
using System.Collections.Generic; | ||
|
||
namespace EliteAPI | ||
{ | ||
public class MissionRedirectedInfo | ||
{ | ||
public DateTime timestamp { get; set; } | ||
public int MissionID { get; set; } | ||
public string Name { get; set; } | ||
public string NewDestinationStation { get; set; } | ||
public string NewDestinationSystem { get; set; } | ||
public string OldDestinationStation { get; set; } | ||
public string OldDestinationSystem { get; set; } | ||
} | ||
} |
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 |
---|---|---|
@@ -0,0 +1,10 @@ | ||
using System; | ||
using System.Collections.Generic; | ||
|
||
namespace EliteAPI | ||
{ | ||
public class ModuleInfoInfo | ||
{ | ||
public DateTime timestamp { get; set; } | ||
} | ||
} |
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 |
---|---|---|
@@ -0,0 +1,20 @@ | ||
using System; | ||
using System.Collections.Generic; | ||
|
||
namespace EliteAPI | ||
{ | ||
public class ModuleRetrieveInfo | ||
{ | ||
public DateTime timestamp { get; set; } | ||
public int MarketID { get; set; } | ||
public string Slot { get; set; } | ||
public string RetrievedItem { get; set; } | ||
public string RetrievedItem_Localised { get; set; } | ||
public string Ship { get; set; } | ||
public int ShipID { get; set; } | ||
public Boolean Hot { get; set; } | ||
public string EngineerModifications { get; set; } | ||
public int Level { get; set; } | ||
public Double Quality { get; set; } | ||
} | ||
} |
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 |
---|---|---|
@@ -0,0 +1,19 @@ | ||
using System; | ||
using System.Collections.Generic; | ||
|
||
namespace EliteAPI | ||
{ | ||
public class ModuleSwapInfo | ||
{ | ||
public DateTime timestamp { get; set; } | ||
public int MarketID { get; set; } | ||
public string FromSlot { get; set; } | ||
public string ToSlot { get; set; } | ||
public string FromItem { get; set; } | ||
public string FromItem_Localised { get; set; } | ||
public string ToItem { get; set; } | ||
public string ToItem_Localised { get; set; } | ||
public string Ship { get; set; } | ||
public int ShipID { get; set; } | ||
} | ||
} |
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 |
---|---|---|
@@ -0,0 +1,23 @@ | ||
using System; | ||
using System.Collections.Generic; | ||
|
||
namespace EliteAPI | ||
{ | ||
|
||
public class MultiSellExplorationDataInfo | ||
{ | ||
public DateTime timestamp { get; set; } | ||
public string _event { get; set; } | ||
public List<DiscoveredInfo> Discovered { get; set; } | ||
public int BaseValue { get; set; } | ||
public int Bonus { get; set; } | ||
public int TotalEarnings { get; set; } | ||
} | ||
|
||
public class DiscoveredInfo | ||
{ | ||
public string SystemName { get; set; } | ||
public int NumBodies { get; set; } | ||
} | ||
|
||
} |
Oops, something went wrong.