|
1 |
| -using LootLocker.LootLockerEnums; |
2 |
| -using System; |
| 1 | +using LootLocker.LootLockerEnums; |
3 | 2 | using System.Collections.Generic;
|
4 |
| -using JetBrains.Annotations; |
5 | 3 |
|
6 | 4 | namespace LootLocker.LootLockerEnums
|
7 | 5 | {
|
@@ -80,36 +78,40 @@ public class LootLockerCatalogEntryPrice
|
80 | 78 | }
|
81 | 79 |
|
82 | 80 | /// <summary>
|
83 |
| - /// </summary> |
| 81 | + /// </summary> |
84 | 82 | public class LootLockerCatalogEntry
|
85 | 83 | {
|
86 | 84 | /// <summary>
|
87 |
| - /// The time when this catalog entry was created |
88 |
| - /// </summary> |
| 85 | + /// The time when this catalog entry was created |
| 86 | + /// </summary> |
89 | 87 | public string created_at { get; set; }
|
90 | 88 | /// <summary>
|
91 |
| - /// The kind of entity that this entry is. This signifies in which lookup structure to find the details of this entry by using the catalog_listing_id. |
92 |
| - /// </summary> |
| 89 | + /// All the listings configured for this catalog entry |
| 90 | + /// </summary> |
| 91 | + public LootLockerCatalogEntryListings listings { get; set; } |
| 92 | + /// <summary> |
| 93 | + /// The kind of entity that this entry is. This signifies in which lookup structure to find the details of this entry by using the catalog_listing_id. |
| 94 | + /// </summary> |
93 | 95 | public LootLockerCatalogEntryEntityKind entity_kind { get; set; }
|
94 | 96 | /// <summary>
|
95 |
| - /// The name of this entity |
96 |
| - /// </summary> |
| 97 | + /// The name of this entity |
| 98 | + /// </summary> |
97 | 99 | public string entity_name { get; set; }
|
98 | 100 | /// <summary>
|
99 |
| - /// A list of prices for this catalog entry |
100 |
| - /// </summary> |
| 101 | + /// A list of prices for this catalog entry |
| 102 | + /// </summary> |
101 | 103 | public LootLockerCatalogEntryPrice[] prices { get; set; }
|
102 | 104 | /// <summary>
|
103 |
| - /// The unique id of the entity that this entry refers to. |
104 |
| - /// </summary> |
| 105 | + /// The unique id of the entity that this entry refers to. |
| 106 | + /// </summary> |
105 | 107 | public string entity_id { get; set; }
|
106 | 108 | /// <summary>
|
107 | 109 | /// A unique listing id for this entry in this catalog, grouping the entity and the prices. This is the key you use to look up details about the entity in the structure signified by the entity_kind.
|
108 | 110 | /// </summary>
|
109 | 111 | public string catalog_listing_id { get; set; }
|
110 | 112 | /// <summary>
|
111 |
| - /// Whether this entry is currently purchasable |
112 |
| - /// </summary> |
| 113 | + /// Whether this entry is currently purchasable |
| 114 | + /// </summary> |
113 | 115 | public bool purchasable { get; set; }
|
114 | 116 | }
|
115 | 117 |
|
@@ -153,7 +155,7 @@ public class LootLockerAssetDetails
|
153 | 155 | public class LootLockerProgressionPointDetails
|
154 | 156 | {
|
155 | 157 | /// <summary>
|
156 |
| - /// The unique key of the pogression that this refers to |
| 158 | + /// The unique key of the progression that this refers to |
157 | 159 | /// </summary>
|
158 | 160 | public string key { get; set; }
|
159 | 161 | /// <summary>
|
|
0 commit comments