import { DestinyEntitiesVendorsDestinyVendorComponent } from './destinyEntitiesVendorsDestinyVendorComponent'; /** * The base properties of the vendor. These are keyed by the Vendor Hash, so you will get one Vendor Component per vendor returned. COMPONENT TYPE: Vendors */ export interface DestinyResponsesDestinyVendorsResponseVendors { data?: { [key: string]: DestinyEntitiesVendorsDestinyVendorComponent; }; privacy?: number; /** * If true, this component is disabled. */ disabled?: boolean; }