Skip to content

AppointmentTypeCptCodeType

AppointmentTypeCptCode object

Fields

appointment_type_id · ID! · required · Appointment Type ID
cpt_code_id · ID! · required · CPT Code ID
fee_per_unit · Int · Fee (in cents) per unit
id · ID! · required · The unique identifier of the object
insurance_billing_enabled · Boolean · DEPRECATED. Use appointmentType's insurance_billing_enabled instead
deprecated Use appointmentType's insurance_billing_enabled instead
units · String · Units

Used By

Definition

"""
AppointmentTypeCptCode object
"""
type AppointmentTypeCptCodeType {
"""
Appointment Type ID
"""
appointment_type_id: ID!
"""
CPT Code ID
"""
cpt_code_id: ID!
"""
Fee (in cents) per unit
"""
fee_per_unit: Int
"""
The unique identifier of the object
"""
id: ID!
"""
DEPRECATED. Use appointmentType's insurance_billing_enabled instead
"""
insurance_billing_enabled: Boolean
@deprecated(
reason: "Use appointmentType's insurance_billing_enabled instead"
)
"""
Units
"""
units: String
}