Skip to content

BillingAddressInput

Payload for a billing address to create a new Healthie subscription.

Fields

city · String · The city
country · String · The country code
line1 · String · The first line of the address
line2 · String · The second line of the address
state · String · The state
postal_code · String · The zip code

Used By

Definition

"""
Payload for a billing address to create a new Healthie subscription.
"""
input BillingAddressInput {
"""
The city
"""
city: String
"""
The country code
"""
country: String
"""
The first line of the address
"""
line1: String
"""
The second line of the address
"""
line2: String
"""
The state
"""
state: String
"""
The zip code
"""
postal_code: String
}