interface Address {
    city?: string;
    complement?: string;
    country?: string;
    neighborhood?: string;
    number?: string;
    state?: string;
    street?: string;
    zip_code?: string;
}

Properties

city?: string
complement?: string
country?: string
neighborhood?: string
number?: string
state?: string
street?: string
zip_code?: string