-
Notifications
You must be signed in to change notification settings - Fork 0
/
CurrencySummary.cs
54 lines (39 loc) · 1.52 KB
/
CurrencySummary.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
// Copyright (c) 2022 AccelByte Inc. All Rights Reserved.
// This is licensed software from AccelByte Inc, for limitations
// and restrictions contact your company contract manager.
// This code is generated by tool. DO NOT EDIT.
using System.Text.Json.Serialization;
using AccelByte.Sdk.Core;
using AccelByte.Sdk.Core.Converters;
namespace AccelByte.Sdk.Api.Platform.Model
{
public class CurrencySummary : AccelByte.Sdk.Core.Model
{
[JsonPropertyName("currencyCode")]
public string? CurrencyCode { get; set; }
[JsonPropertyName("currencySymbol")]
public string? CurrencySymbol { get; set; }
[JsonPropertyName("currencyType")]
[JsonStringEnum]
public CurrencySummaryCurrencyType? CurrencyType { get; set; }
[JsonPropertyName("decimals")]
public int? Decimals { get; set; }
[JsonPropertyName("namespace")]
public string? Namespace { get; set; }
}
public class CurrencySummaryCurrencyType : StringEnum<CurrencySummaryCurrencyType>
{
public static readonly CurrencySummaryCurrencyType REAL
= new CurrencySummaryCurrencyType("REAL");
public static readonly CurrencySummaryCurrencyType VIRTUAL
= new CurrencySummaryCurrencyType("VIRTUAL");
public static implicit operator CurrencySummaryCurrencyType(string value)
{
return NewValue(value);
}
public CurrencySummaryCurrencyType(string enumValue)
: base(enumValue)
{
}
}
}