Skip to content

ReceiptLineItem

receipt line item

Fields

created_at · String! · required · Date of service (as a date)
description · String · description of line item
id · ID! · required · The unique identifier of the line item
previous_price · String · previous price
price · String · price of line item
super_bill_id · ID · id of super bill
updated_at · String! · required · updated at

Used By

Definition

"""
receipt line item
"""
type ReceiptLineItem {
"""
Date of service (as a date)
"""
created_at: String!
"""
description of line item
"""
description: String
"""
The unique identifier of the line item
"""
id: ID!
"""
previous price
"""
previous_price: String
"""
price of line item
"""
price: String
"""
id of super bill
"""
super_bill_id: ID
"""
updated at
"""
updated_at: String!
}