/** * If this item is a \"reward sack\" that can be opened to provide other items, this will be non-null and the properties of the sack contained herein. */ export interface DestinyDefinitionsDestinyInventoryItemDefinitionSack { /** * A description of what will happen when you open the sack. As far as I can tell, this is blank currently. Unknown whether it will eventually be populated with useful info. */ detailAction?: string; /** * The localized name of the action being performed when you open the sack. */ openAction?: string; selectItemCount?: number; vendorSackType?: string; openOnAcquire?: boolean; }