Skip to main content

TypeScript shape

interface DetailedPairStatsStringMetrics {
  change: number | null;
  currentValue: string | null;
  previousValue: string | null;
  buckets: string[];
}
change
Float
Period-over-period change.
currentValue
String
Current value.
previousValue
String
Previous period value.
buckets
[String!]!
Time-series bucket values.