Пример #1
0
 /// <summary>
 /// Initializes a new instance of the <see cref="DestinyEntitiesCharactersDestinyCharacterComponent" /> class.
 /// </summary>
 /// <param name="membershipId">Every Destiny Profile has a membershipId. This is provided on the character as well for convenience..</param>
 /// <param name="membershipType">membershipType tells you the platform on which the character plays. Examine the BungieMembershipType enumeration for possible values..</param>
 /// <param name="characterId">The unique identifier for the character..</param>
 /// <param name="dateLastPlayed">The last date that the user played Destiny..</param>
 /// <param name="minutesPlayedThisSession">If the user is currently playing, this is how long they&#39;ve been playing..</param>
 /// <param name="minutesPlayedTotal">If this value is 525,600, then they played Destiny for a year. Or they&#39;re a very dedicated Rent fan. Note that this includes idle time, not just time spent actually in activities shooting things..</param>
 /// <param name="light">The user&#39;s calculated \&quot;Light Level\&quot;. Light level is an indicator of your power that mostly matters in the end game, once you&#39;ve reached the maximum character level: it&#39;s a level that&#39;s dependent on the average Attack/Defense power of your items..</param>
 /// <param name="stats">Your character&#39;s stats, such as Agility, Resilience, etc... *not* historical stats.  You&#39;ll have to call a different endpoint for those..</param>
 /// <param name="raceHash">Use this hash to look up the character&#39;s DestinyRaceDefinition..</param>
 /// <param name="genderHash">Use this hash to look up the character&#39;s DestinyGenderDefinition..</param>
 /// <param name="classHash">Use this hash to look up the character&#39;s DestinyClassDefinition..</param>
 /// <param name="raceType">Mostly for historical purposes at this point, this is an enumeration for the character&#39;s race.  It&#39;ll be preferable in the general case to look up the related definition: but for some people this was too convenient to remove..</param>
 /// <param name="classType">Mostly for historical purposes at this point, this is an enumeration for the character&#39;s class.  It&#39;ll be preferable in the general case to look up the related definition: but for some people this was too convenient to remove..</param>
 /// <param name="genderType">Mostly for historical purposes at this point, this is an enumeration for the character&#39;s Gender.  It&#39;ll be preferable in the general case to look up the related definition: but for some people this was too convenient to remove. And yeah, it&#39;s an enumeration and not a boolean. Fight me..</param>
 /// <param name="emblemPath">A shortcut path to the user&#39;s currently equipped emblem image. If you&#39;re just showing summary info for a user, this is more convenient than examining their equipped emblem and looking up the definition..</param>
 /// <param name="emblemBackgroundPath">A shortcut path to the user&#39;s currently equipped emblem background image. If you&#39;re just showing summary info for a user, this is more convenient than examining their equipped emblem and looking up the definition..</param>
 /// <param name="emblemHash">The hash of the currently equipped emblem for the user. Can be used to look up the DestinyInventoryItemDefinition..</param>
 /// <param name="emblemColor">A shortcut for getting the background color of the user&#39;s currently equipped emblem without having to do a DestinyInventoryItemDefinition lookup..</param>
 /// <param name="levelProgression">The progression that indicates your character&#39;s level. Not their light level, but their character level: you know, the thing you max out a couple hours in and then ignore for the sake of light level..</param>
 /// <param name="baseCharacterLevel">The \&quot;base\&quot; level of your character, not accounting for any light level..</param>
 /// <param name="percentToNextLevel">A number between 0 and 100, indicating the whole and fractional % remaining to get to the next character level..</param>
 /// <param name="titleRecordHash">If this Character has a title assigned to it, this is the identifier of the DestinyRecordDefinition that has that title information..</param>
 public DestinyEntitiesCharactersDestinyCharacterComponent(long membershipId = default(long), int membershipType = default(int), long characterId = default(long), DateTime dateLastPlayed = default(DateTime), long minutesPlayedThisSession = default(long), long minutesPlayedTotal = default(long), int light = default(int), Dictionary <string, int> stats = default(Dictionary <string, int>), long raceHash = default(long), long genderHash = default(long), long classHash = default(long), int raceType = default(int), int classType = default(int), int genderType = default(int), string emblemPath = default(string), string emblemBackgroundPath = default(string), long emblemHash = default(long), DestinyMiscDestinyColor emblemColor = default(DestinyMiscDestinyColor), DestinyDestinyProgression levelProgression = default(DestinyDestinyProgression), int baseCharacterLevel = default(int), float percentToNextLevel = default(float), long titleRecordHash = default(long))
 {
     this.MembershipId             = membershipId;
     this.MembershipType           = membershipType;
     this.CharacterId              = characterId;
     this.DateLastPlayed           = dateLastPlayed;
     this.MinutesPlayedThisSession = minutesPlayedThisSession;
     this.MinutesPlayedTotal       = minutesPlayedTotal;
     this.Light                = light;
     this.Stats                = stats;
     this.RaceHash             = raceHash;
     this.GenderHash           = genderHash;
     this.ClassHash            = classHash;
     this.RaceType             = raceType;
     this.ClassType            = classType;
     this.GenderType           = genderType;
     this.EmblemPath           = emblemPath;
     this.EmblemBackgroundPath = emblemBackgroundPath;
     this.EmblemHash           = emblemHash;
     this.EmblemColor          = emblemColor;
     this.LevelProgression     = levelProgression;
     this.BaseCharacterLevel   = baseCharacterLevel;
     this.PercentToNextLevel   = percentToNextLevel;
     this.TitleRecordHash      = titleRecordHash;
 }
Пример #2
0
 /// <summary>
 /// Initializes a new instance of the <see cref="DestinyEntitiesVendorsDestinyVendorComponent" /> class.
 /// </summary>
 /// <param name="canPurchase">If True, you can purchase from the Vendor.  Theoretically, Vendors can be restricted from selling items. In practice, none do that (yet?)..</param>
 /// <param name="progression">If the Vendor has a related Reputation, this is the Progression data that represents the character&#39;s Reputation level with this Vendor..</param>
 /// <param name="vendorLocationIndex">An index into the vendor definition&#39;s \&quot;locations\&quot; property array, indicating which location they are at currently. If -1, then the vendor has no known location (and you may choose not to show them in your UI as a result. I mean, it&#39;s your bag honey).</param>
 /// <param name="seasonalRank">If this vendor has a seasonal rank, this will be the calculated value of that rank. How nice is that? I mean, that&#39;s pretty sweeet. It&#39;s a whole 32 bit integer..</param>
 /// <param name="vendorHash">The unique identifier for the vendor. Use it to look up their DestinyVendorDefinition..</param>
 /// <param name="nextRefreshDate">The date when this vendor&#39;s inventory will next rotate/refresh.  Note that this is distinct from the date ranges that the vendor is visible/available in-game: this field indicates the specific time when the vendor&#39;s available items refresh and rotate, regardless of whether the vendor is actually available at that time. Unfortunately, these two values may be (and are, for the case of important vendors like Xur) different.  Issue https://github.com/Bungie-net/api/issues/353 is tracking a fix to start providing visibility date ranges where possible in addition to this refresh date, so that all important dates for vendors are available for use..</param>
 /// <param name="enabled">If True, the Vendor is currently accessible.   If False, they may not actually be visible in the world at the moment..</param>
 public DestinyEntitiesVendorsDestinyVendorComponent(bool canPurchase = default(bool), DestinyDestinyProgression progression = default(DestinyDestinyProgression), int vendorLocationIndex = default(int), int seasonalRank = default(int), long vendorHash = default(long), DateTime nextRefreshDate = default(DateTime), bool enabled = default(bool))
 {
     this.CanPurchase         = canPurchase;
     this.Progression         = progression;
     this.VendorLocationIndex = vendorLocationIndex;
     this.SeasonalRank        = seasonalRank;
     this.VendorHash          = vendorHash;
     this.NextRefreshDate     = nextRefreshDate;
     this.Enabled             = enabled;
 }
Пример #3
0
 /// <summary>
 /// Initializes a new instance of the <see cref="DestinyArtifactsDestinyArtifactProfileScoped" /> class.
 /// </summary>
 /// <param name="artifactHash">artifactHash.</param>
 /// <param name="pointProgression">pointProgression.</param>
 /// <param name="pointsAcquired">pointsAcquired.</param>
 /// <param name="powerBonusProgression">powerBonusProgression.</param>
 /// <param name="powerBonus">powerBonus.</param>
 public DestinyArtifactsDestinyArtifactProfileScoped(long artifactHash = default(long), DestinyDestinyProgression pointProgression = default(DestinyDestinyProgression), int pointsAcquired = default(int), DestinyDestinyProgression powerBonusProgression = default(DestinyDestinyProgression), int powerBonus = default(int))
 {
     this.ArtifactHash          = artifactHash;
     this.PointProgression      = pointProgression;
     this.PointsAcquired        = pointsAcquired;
     this.PowerBonusProgression = powerBonusProgression;
     this.PowerBonus            = powerBonus;
 }
 /// <summary>
 /// Initializes a new instance of the <see cref="DestinyEntitiesItemsDestinyItemTalentGridComponent" /> class.
 /// </summary>
 /// <param name="talentGridHash">Most items don&#39;t have useful talent grids anymore, but Builds in particular still do.  You can use this hash to lookup the DestinyTalentGridDefinition attached to this item, which will be crucial for understanding the node values on the item..</param>
 /// <param name="nodes">Detailed information about the individual nodes in the talent grid.  A node represents a single visual \&quot;pip\&quot; in the talent grid or Build detail view, though each node may have multiple \&quot;steps\&quot; which indicate the actual bonuses and visual representation of that node..</param>
 /// <param name="isGridComplete">Indicates whether the talent grid on this item is completed, and thus whether it should have a gold border around it.  Only will be true if the item actually *has* a talent grid, and only then if it is completed (i.e. every exclusive set has an activated node, and every non-exclusive set node has been activated).</param>
 /// <param name="gridProgression">If the item has a progression, it will be detailed here. A progression means that the item can gain experience. Thresholds of experience are what determines whether and when a talent node can be activated..</param>
 public DestinyEntitiesItemsDestinyItemTalentGridComponent(long talentGridHash = default(long), List <DestinyDestinyTalentNode> nodes = default(List <DestinyDestinyTalentNode>), bool isGridComplete = default(bool), DestinyDestinyProgression gridProgression = default(DestinyDestinyProgression))
 {
     this.TalentGridHash  = talentGridHash;
     this.Nodes           = nodes;
     this.IsGridComplete  = isGridComplete;
     this.GridProgression = gridProgression;
 }