interface InventoryQuantity {
    available: number;
    booked: number;
    total: number;
}

Properties

available: number

The remaining spots calculated by: total - booked

booked: number

The spots that were already booked

total: number

The total spots defined by the user to offer on the trip