export interface IMerchantAddress {
    formattedAddress: string;
    country: 'BRASIL';
    state: string;
    city: string;
    neighborhood: string;
    streetName: string;
    streetNumber: string;
    postalCode: string;
}
