Skip to content

OrganizationCptCodeType

OrganizationCptCode object

Fields

cpt_code_id · ID! · required · The CPT code id
created_at · String! · required · date created
id · ID! · required · The unique identifier of the join
organization_cpt_code_insurance_fees · [OrganizationCptCodeInsuranceFeeType!] · Returns specific insurance fees associated with organization cpt codes
organization_cpt_code_insurance_fees_count · String · Total insurance fees associated with the organization cpt code
organization_id · ID! · required · The organization id
price_per_unit · String · The price per unit
updated_at · String! · required · date updated

Used By

Definition

"""
OrganizationCptCode object
"""
type OrganizationCptCodeType {
"""
The CPT code id
"""
cpt_code_id: ID!
"""
date created
"""
created_at: String!
"""
The unique identifier of the join
"""
id: ID!
"""
Returns specific insurance fees associated with organization cpt codes
"""
organization_cpt_code_insurance_fees: [OrganizationCptCodeInsuranceFeeType!]
"""
Total insurance fees associated with the organization cpt code
"""
organization_cpt_code_insurance_fees_count: String
"""
The organization id
"""
organization_id: ID!
"""
The price per unit
"""
price_per_unit: String
"""
date updated
"""
updated_at: String!
}