Skip to content

StripeCompanyAddressType

A Stripe company address object

Fields

city · String · The city or town of the address.
country · String · The two-letter country code of the address.
line1 · String · The first line of the address.
line2 · String · The second line of the address.
postal_code · String · The postal code of the address.
state · String · The state or province of the address.

Used By

Definition

"""
A Stripe company address object
"""
type StripeCompanyAddressType {
"""
The city or town of the address.
"""
city: String
"""
The two-letter country code of the address.
"""
country: String
"""
The first line of the address.
"""
line1: String
"""
The second line of the address.
"""
line2: String
"""
The postal code of the address.
"""
postal_code: String
"""
The state or province of the address.
"""
state: String
}