OrderPartyReliability
A seller's recent order-handling stats over a rolling window.
- avgType: number
Ship Time Hours min:0nullablerequiredAverage hours between an order being placed and marked shipped.
nullwhen nothing shipped in the window. - completedType: integer
Count min:0max:9007199254740991requiredOf those, how many completed successfully.
- completionType: number
Rate min:0max:1nullablerequiredShare of orders completed, from 0 to 1.
nullwhen there aren't enough orders to compute it. - orderType: integer
Count min:0max:9007199254740991requiredOrders received in the recent window that the rates are computed over.
Examples
{
"orderCount": 96,
"completedCount": 94,
"completionRate": 0.98,
"avgShipTimeHours": 21.4
}