Fixes some formatting and properties
This commit is contained in:
parent
3036d0dda0
commit
83b5cda902
|
@ -8,8 +8,7 @@ public class Card
|
||||||
|
|
||||||
public int Id { get; set; }
|
public int Id { get; set; }
|
||||||
|
|
||||||
[JsonPropertyName("setData")]
|
[JsonPropertyName("setData")] public Set? Set { get; set; }
|
||||||
public Set? Set { get; set; }
|
|
||||||
|
|
||||||
public string[]? Types { get; set; }
|
public string[]? Types { get; set; }
|
||||||
|
|
||||||
|
@ -31,10 +30,9 @@ public class Card
|
||||||
// TODO: Type of property is not documented. Has to be evaluated at a later time.
|
// TODO: Type of property is not documented. Has to be evaluated at a later time.
|
||||||
// public Resistance[]? Ressistences { get; set; }
|
// public Resistance[]? Ressistences { get; set; }
|
||||||
|
|
||||||
[JsonPropertyName("retreatCost")]
|
[JsonPropertyName("retreatCost")] public string[]? RetreatCosts { get; set; }
|
||||||
public string[]? RetreatCosts { get; set; }
|
|
||||||
|
|
||||||
public int? ConvertedRetreadCost { get; set; }
|
public int? ConvertedRetreatCost { get; set; }
|
||||||
|
|
||||||
public string? Supertype { get; set; }
|
public string? Supertype { get; set; }
|
||||||
|
|
||||||
|
@ -47,14 +45,11 @@ public class Card
|
||||||
|
|
||||||
public string? Artist { get; set; }
|
public string? Artist { get; set; }
|
||||||
|
|
||||||
[JsonPropertyName("image_url")]
|
|
||||||
public string? ImageUrl { get; set; }
|
public string? ImageUrl { get; set; }
|
||||||
|
|
||||||
[JsonPropertyName("card_url")]
|
|
||||||
public string? CardUrl { get; set; }
|
public string? CardUrl { get; set; }
|
||||||
|
|
||||||
[JsonPropertyName("sequenceNumber")]
|
[JsonPropertyName("sequenceNumber")] public int Number { get; set; }
|
||||||
public int Number { get; set; }
|
|
||||||
|
|
||||||
public string? PrintedNumber { get; set; }
|
public string? PrintedNumber { get; set; }
|
||||||
|
|
||||||
|
|
|
@ -5,20 +5,13 @@ namespace JpnCardsPokemonSdk.Api;
|
||||||
|
|
||||||
public class Set
|
public class Set
|
||||||
{
|
{
|
||||||
static Set()
|
|
||||||
{
|
|
||||||
EndpointFactory.RegisterTypeEndpoint<Set>(new SetEndpoint());
|
|
||||||
}
|
|
||||||
|
|
||||||
public string? Name { get; set; }
|
public string? Name { get; set; }
|
||||||
|
|
||||||
public int Id { get; set; }
|
public int Id { get; set; }
|
||||||
|
|
||||||
[JsonPropertyName("source_url")]
|
[JsonPropertyName("source_url")] public string? SourceUrl { get; set; }
|
||||||
public string? SourceUrl { get; set; }
|
|
||||||
|
|
||||||
[JsonPropertyName("image_url")]
|
[JsonPropertyName("image_url")] public string? ImageUrl { get; set; }
|
||||||
public string? ImageUrl { get; set; }
|
|
||||||
|
|
||||||
public string? Language { get; set; }
|
public string? Language { get; set; }
|
||||||
|
|
||||||
|
@ -29,14 +22,13 @@ public class Set
|
||||||
// TODO: According to documentation the property currently is not supported.
|
// TODO: According to documentation the property currently is not supported.
|
||||||
// public DateOnly? Date { get; set; }
|
// public DateOnly? Date { get; set; }
|
||||||
|
|
||||||
[JsonPropertyName("card_count")]
|
[JsonPropertyName("card_count")] public int TotalCardCount { get; set; }
|
||||||
public int TotalCardCount { get; set; }
|
|
||||||
|
|
||||||
[JsonPropertyName("printed_count")]
|
[JsonPropertyName("printed_count")]
|
||||||
|
[JsonNumberHandling(JsonNumberHandling.AllowReadingFromString)]
|
||||||
public int PrintedCardCount { get; set; }
|
public int PrintedCardCount { get; set; }
|
||||||
|
|
||||||
[JsonPropertyName("set_code")]
|
[JsonPropertyName("set_code")] public string? SetCode { get; set; }
|
||||||
public string? SetCode { get; set; }
|
|
||||||
|
|
||||||
public int Uuid { get; set; }
|
public int Uuid { get; set; }
|
||||||
}
|
}
|
Loading…
Reference in a new issue