// Generated Source interface GlipPersonInfo { /** * Internal identifier of a user */ id?: string; /** * First name of a user */ firstName?: string; /** * Last name of a user */ lastName?: string; /** * Email of a user */ email?: string; /** * Photo of a user */ avatar?: string; /** * Internal identifier of a company */ companyId?: string; /** * Time of creation in ISO 8601 format */ creationTime?: string; /** * Time of last modification in ISO 8601 format */ lastModifiedTime?: string; } export default GlipPersonInfo;