Class PricingResult
Represents the response from a pricing query, containing pricing information for one or more countries.
public class PricingResult
- Inheritance
-
PricingResult
- Inherited Members
Properties
Count
The number of countries retrieved.
[JsonProperty("count")]
public string Count { get; set; }
Property Value
Countries
The code for the country you looked up: e.g. GB, US, BR, RU.
[JsonProperty("countries")]
public Country[] Countries { get; set; }
Property Value
- Country[]