/** * PagarmeApiSDKLib * * This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ). */ import { Schema } from '../schema'; import { GetCustomerResponse } from './getCustomerResponse'; /** Response object for getting an Address */ export interface GetAddressResponse { id?: string | null; street?: string | null; number?: string | null; complement?: string | null; zipCode?: string | null; neighborhood?: string | null; city?: string | null; state?: string | null; country?: string | null; status?: string | null; createdAt?: string | null; updatedAt?: string | null; customer?: GetCustomerResponse | null; metadata?: Record | null; /** Line 1 for address */ line1?: string | null; /** Line 2 for address */ line2?: string | null; deletedAt?: string | null; } export declare const getAddressResponseSchema: Schema;