Class CardmarketPricing
- Namespace
- TcgDex.Models
- Assembly
- TcgDex.CSharpSdk.dll
Cardmarket price points. Every figure is nullable: the API reports null for a series that has no data rather than omitting it.
public sealed record CardmarketPricing : IEquatable<CardmarketPricing>Inheritance
Implements
Inherited Members
Remarks
The holo-suffixed properties map to hyphenated JSON keys (avg-holo),
which is why they carry explicit name mappings.
Properties
Avg
Average sale price.
public decimal? Avg { get; init; }Property Value
Avg1
Average price over the last day.
public decimal? Avg1 { get; init; }Property Value
Avg1Holo
Holofoil average over the last day.
[JsonPropertyName("avg1-holo")]
public decimal? Avg1Holo { get; init; }Property Value
Avg30
Average price over the last 30 days.
public decimal? Avg30 { get; init; }Property Value
Avg30Holo
Holofoil average over the last 30 days.
[JsonPropertyName("avg30-holo")]
public decimal? Avg30Holo { get; init; }Property Value
Avg7
Average price over the last 7 days.
public decimal? Avg7 { get; init; }Property Value
Avg7Holo
Holofoil average over the last 7 days.
[JsonPropertyName("avg7-holo")]
public decimal? Avg7Holo { get; init; }Property Value
AvgHolo
Average sale price for the holofoil printing.
[JsonPropertyName("avg-holo")]
public decimal? AvgHolo { get; init; }Property Value
IdProduct
Cardmarket's internal product identifier.
public int? IdProduct { get; init; }Property Value
- int?
Low
Lowest available price.
public decimal? Low { get; init; }Property Value
LowHolo
Lowest available price for the holofoil printing.
[JsonPropertyName("low-holo")]
public decimal? LowHolo { get; init; }Property Value
Trend
Current price trend.
public decimal? Trend { get; init; }Property Value
TrendHolo
Price trend for the holofoil printing.
[JsonPropertyName("trend-holo")]
public decimal? TrendHolo { get; init; }Property Value
Unit
Currency code; "EUR" for this source.
public string? Unit { get; init; }Property Value
Updated
When these prices were last refreshed.
public DateTimeOffset? Updated { get; init; }