/** * Information about whether and what might prevent you from joining this person on a fireteam. */ export interface DestinyComponentsProfilesDestinyProfileTransitoryComponentJoinability { /** * The number of slots still available on this person\'s fireteam. */ openSlots?: number; /** * Who the person is currently allowing invites from. */ privacySetting?: number; /** * Reasons why a person can\'t join this person\'s fireteam. */ closedReasons?: number; }