import { DestinyComponentsVendorsDestinyPublicVendorComponent } from './destinyComponentsVendorsDestinyPublicVendorComponent'; /** * 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 DestinyResponsesDestinyPublicVendorsResponseVendors { data?: { [key: string]: DestinyComponentsVendorsDestinyPublicVendorComponent; }; privacy?: number; /** * If true, this component is disabled. */ disabled?: boolean; }