Skip to content

InsuranceAuthorizationInput

Payload for an insurance authorization

Fields

authorization_number · String · The authorization number
end_on · String · The end date of the authorization
id · ID · The ID of the insurance authorization
start_on · String · The start date of the authorization
unit_type · String · The unit type
units_authorized · String · The number of authorized units
units_limit_per_visit · String · The unit limit per visit
units_used · String · The number of used units
visits_authorized · String · The number of authorized visits
visits_used · String · The number of used visits

Used By

Definition

"""
Payload for an insurance authorization
"""
input InsuranceAuthorizationInput {
"""
The authorization number
"""
authorization_number: String
"""
The end date of the authorization
"""
end_on: String
"""
The ID of the insurance authorization
"""
id: ID
"""
The start date of the authorization
"""
start_on: String
"""
The unit type
"""
unit_type: String
"""
The number of authorized units
"""
units_authorized: String
"""
The unit limit per visit
"""
units_limit_per_visit: String
"""
The number of used units
"""
units_used: String
"""
The number of authorized visits
"""
visits_authorized: String
"""
The number of used visits
"""
visits_used: String
}