/** * This block of data, if it exists, provides information about the guided game experience and restrictions for this activity. If it doesn\'t exist, the game is not able to be played as a guided game. */ export interface DestinyDefinitionsDestinyActivityDefinitionGuidedGame { /** * The maximum amount of people that can be in the waiting lobby. */ guidedMaxLobbySize?: number; /** * The minimum amount of people that can be in the waiting lobby. */ guidedMinLobbySize?: number; /** * If -1, the guided group cannot be disbanded. Otherwise, take the total # of players in the activity and subtract this number: that is the total # of votes needed for the guided group to disband. */ guidedDisbandCount?: number; }