BillingAddressPaymentSourceInput
The billing address information
type BillingAddressPaymentSourceInput = {
address_line_1?: InputMaybe<Scalars['String']['input']>; /** The second line of the address */
address_line_2?: InputMaybe<Scalars['String']['input']>; /** The city of the address */
city?: InputMaybe<Scalars['String']['input']>; /** The country of the address */
country_code: Scalars['String']['input']; /** The postal code of the address */
postal_code?: InputMaybe<Scalars['String']['input']>; /** The region of the address */
region?: InputMaybe<Scalars['String']['input']>;
};