ReconcileReservationResult
Represents the result of reconciling a reservationg
type ReconcileReservationResult {
success: Boolean!
hasAdjustments: Boolean!
expiresAt: DateTime
rows: [ReconciledRow!]
}
Fields
success ● Boolean!
True if the operation completed successfully (even if quantities were adjusted). False if the operation failed and no valid result could be produced.
hasAdjustments ● Boolean!
Determine if any adjustments made to the requested quantities.
expiresAt ● DateTime
Expiration date/time of the active reservation. Only set if a reservation exists.
rows ● [ReconciledRow!]
Details about each reconciled row.
Example
{
"expiresAt": "2024-05-03T11:52:33Z",
"rows": [
{
"details": {}
}
]
}