pub type GetPricesResponse = GetPricesResponse200Body;

Aliased Type§

struct GetPricesResponse {
    pub prices: Option<Vec<ClientPrice>>,
    pub home_conversions: Option<Vec<HomeConversions>>,
    pub time: Option<DateTime<Utc>>,
}

Fields§

§prices: Option<Vec<ClientPrice>>

The list of Price objects requested.

§home_conversions: Option<Vec<HomeConversions>>

The list of home currency conversion factors requested. This field will only be present if includeHomeConversions was set to true in the request.

§time: Option<DateTime<Utc>>

The DateTime value to use for the “since” parameter in the next poll request. format: The RFC 3339 representation is a string conforming to https://tools.ietf.org/rfc/rfc3339.txt. The Unix representation is a string representing the number of seconds since the Unix Epoch (January 1st, 1970 at UTC). The value is a fractional number, where the fractional part represents a fraction of a second (up to nine decimal places).