interface IGetOrgResponse { id: number; short: string; fullname: string; alias: string; type: ('F' | 'J'); reg: string; logo: string | null; expiration: 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 IGetOrgResponse;