Skip to content

BenefitInput

Payload for a benefit

Fields

_destroy · Boolean · If true, the benefit will be deleted
category · String · The category of the benefit
coinsurance · String · The coinsurance for the benefit
copay · String · The copay for the benefit
deductible_calendar_year · String · The deductible calendar year for the benefit
deductible_year_to_date · String · The deductible year to date for the benefit
id · ID · The id of the benefit
telemedicine · Boolean · Whether or not the benefit covers telemedicine

Used By

Definition

"""
Payload for a benefit
"""
input BenefitInput {
"""
If true, the benefit will be deleted
"""
_destroy: Boolean
"""
The category of the benefit
"""
category: String
"""
The coinsurance for the benefit
"""
coinsurance: String
"""
The copay for the benefit
"""
copay: String
"""
The deductible calendar year for the benefit
"""
deductible_calendar_year: String
"""
The deductible year to date for the benefit
"""
deductible_year_to_date: String
"""
The id of the benefit
"""
id: ID
"""
Whether or not the benefit covers telemedicine
"""
telemedicine: Boolean
}