Skip to content

Commit 99be601

Browse files
Erik Bylundkirre-bylund
authored andcommitted
Remove unnecessary meta information about currencies from SDK objects
1 parent f2691f4 commit 99be601

File tree

1 file changed

+1
-34
lines changed

1 file changed

+1
-34
lines changed

Runtime/Game/Requests/CurrencyRequests.cs

Lines changed: 1 addition & 34 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,4 @@
1-
using LootLocker.LootLockerEnums;
2-
using System.Collections;
3-
using System.Collections.Generic;
4-
using UnityEngine;
5-
6-
namespace LootLocker.Requests
1+
namespace LootLocker.Requests
72
{
83
//==================================================
94
// Data Definitions
@@ -14,10 +9,6 @@ namespace LootLocker.Requests
149
*/
1510
public class LootLockerCurrency : LootLockerResponse
1611
{
17-
/*
18-
* The time when this currency was created
19-
*/
20-
public string created_at { get; set; }
2112
/*
2213
* The unique id of the currency
2314
*/
@@ -30,25 +21,13 @@ public class LootLockerCurrency : LootLockerResponse
3021
* The unique short code of the currency
3122
*/
3223
public string code { get; set; }
33-
/*
34-
* Whether this currency is published or not
35-
*/
36-
public bool published { get; set; }
37-
/*
38-
* The time when this currency was published (if it was)
39-
*/
40-
public string published_at { get; set; }
4124
};
4225

4326
/*
4427
* Represents a denomination of a currency
4528
*/
4629
public class LootLockerDenomination : LootLockerResponse
4730
{
48-
/*
49-
* The time when this denomination was created
50-
*/
51-
public string created_at { get; set; }
5231
/*
5332
* The unique id of the denomination
5433
*/
@@ -76,10 +55,6 @@ public class LootLockerDenomination : LootLockerResponse
7655
*/
7756
public class LootLockerGetCurrencyByCodeResponse : LootLockerResponse
7857
{
79-
/*
80-
* The time when this currency was created
81-
*/
82-
public string created_at { get; set; }
8358
/*
8459
* The unique id of the currency
8560
*/
@@ -92,14 +67,6 @@ public class LootLockerGetCurrencyByCodeResponse : LootLockerResponse
9267
* The unique short code of the currency
9368
*/
9469
public string code { get; set; }
95-
/*
96-
* Whether this currency is published or not
97-
*/
98-
public bool published { get; set; }
99-
/*
100-
* The time when this currency was published (if it was)
101-
*/
102-
public string published_at { get; set; }
10370
};
10471

10572
/*

0 commit comments

Comments
 (0)