export interface IPagBankAddress {
    street: string;
    number: string;
    complement?: string;
    locality: string;
    city: string;
    region: string;
    region_code: string;
    country: string;
    postal_code: string;
}
