interface IUpdateOrgDTO { short?: string; fullname?: string; alias?: string; type?: 'F' | 'J'; reg?: string; logo?: string; billingDay?: number; address?: { type?: 'APT' | 'HOUSE' | 'OFFICE'; zipcode?: string; province?: string; city?: string; country?: string; neighborhood?: string; street?: string; number?: string; complement?: string; }; } export default IUpdateOrgDTO;