interface IGetOrgUnitResponse { id: number; short: string; fullname: string; parent: number | null; descr?: string | null; logo?: string; expiration: string | null; created: string; updated: string; } export default IGetOrgUnitResponse;