Skip to content

ClientPolicyInput

Payload for a client policy

Fields

copay_value · Int · The value (in cents) if insurance billing method is copay
coinsurance_value · Int · The value if insurance billing method is coinsurance
_destroy · Boolean · If true, the policy will be deleted
group_num · String · The group number
holder_dob · String · The date of birth of the policy holder
holder_first · String · The first name of the policy holder
holder_gender · String · The gender of the policy holder
holder_last · String · The last name of the policy holder
holder_location · ClientLocationInput · The location of the policy holder
holder_mi · String · The middle initial of the policy holder
holder_phone · String · The phone number of the policy holder
holder_relationship · String · The relationship of the policy holder to the client
id · ID · The ID of the policy
insurance_billing_method · String · The insurance billing method for this policy (no_billing_method, copay, coinsurance, unmet_deductible)
insurance_card_back · Upload · The back of the insurance card
insurance_card_back_id · String · The ID of the back of the insurance card
insurance_card_front · Upload · The front of the insurance card
insurance_card_front_id · String · The ID of the front of the insurance card
insurance_plan_id · String · The ID of the insurance plan
name · String · The name of the policy
num · String · The policy number
payer_location · ClientLocationInput · The location of the payer
policy_phone_number · String · The policy-related phone number
priority_type · String · The priority type of the policy
same_address_as_client · Boolean · Whether the policy holder has the same address as the client
type_string · String · The type of the policy
user_id · String · The ID of the user

Used By

Definition

"""
Payload for a client policy
"""
input ClientPolicyInput {
"""
The value (in cents) if insurance billing method is copay
"""
copay_value: Int
"""
The value if insurance billing method is coinsurance
"""
coinsurance_value: Int
"""
If true, the policy will be deleted
"""
_destroy: Boolean
"""
The group number
"""
group_num: String
"""
The date of birth of the policy holder
"""
holder_dob: String
"""
The first name of the policy holder
"""
holder_first: String
"""
The gender of the policy holder
"""
holder_gender: String
"""
The last name of the policy holder
"""
holder_last: String
"""
The location of the policy holder
"""
holder_location: ClientLocationInput
"""
The middle initial of the policy holder
"""
holder_mi: String
"""
The phone number of the policy holder
"""
holder_phone: String
"""
The relationship of the policy holder to the client
"""
holder_relationship: String
"""
The ID of the policy
"""
id: ID
"""
The insurance billing method for this policy (no_billing_method, copay, coinsurance, unmet_deductible)
"""
insurance_billing_method: String
"""
The back of the insurance card
"""
insurance_card_back: Upload
"""
The ID of the back of the insurance card
"""
insurance_card_back_id: String
"""
The front of the insurance card
"""
insurance_card_front: Upload
"""
The ID of the front of the insurance card
"""
insurance_card_front_id: String
"""
The insurance plan
"""
insurance_plan: ClientInsurancePlanInput
"""
The ID of the insurance plan
"""
insurance_plan_id: String
"""
The name of the policy
"""
name: String
"""
The policy number
"""
num: String
"""
The location of the payer
"""
payer_location: ClientLocationInput
"""
The policy-related phone number
"""
policy_phone_number: String
"""
The priority type of the policy
"""
priority_type: String
"""
Whether the policy holder has the same address as the client
"""
same_address_as_client: Boolean
"""
The type of the policy
"""
type_string: String
"""
The ID of the user
"""
user_id: String
}