/** * [[Attendee]] contains the information of an attendee. */ export default class Attendee { /** * The attendee id of an attendee. */ attendeeId: string; /** * The external user id of an attendee. */ externalUserId: string; }