/** * PagarmeApiSDKLib * * This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ). */ import { Schema } from '../schema'; /** Response object for getting a billing address */ export interface GetBillingAddressResponse { street?: string | null; number?: string | null; zipCode?: string | null; neighborhood?: string | null; city?: string | null; state?: string | null; country?: string | null; complement?: string | null; /** Line 1 for address */ line1?: string | null; /** Line 2 for address */ line2?: string | null; } export declare const getBillingAddressResponseSchema: Schema;