/** * Bungie.Net API * These endpoints constitute the functionality exposed by Bungie.net, both for more traditional website functionality and for connectivity to Bungie video games and their related functionality. * * The version of the OpenAPI document: 2.18.0 * Contact: support@bungie.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ import { DestinyResponsesDestinyPublicVendorsResponseSales } from './destinyResponsesDestinyPublicVendorsResponseSales'; import { DestinyResponsesDestinyVendorsResponseVendorGroups } from './destinyResponsesDestinyVendorsResponseVendorGroups'; import { DestinyResponsesDestinyPublicVendorsResponseStringVariables } from './destinyResponsesDestinyPublicVendorsResponseStringVariables'; import { DestinyResponsesDestinyVendorsResponseCategories } from './destinyResponsesDestinyVendorsResponseCategories'; import { DestinyResponsesDestinyPublicVendorsResponseVendors } from './destinyResponsesDestinyPublicVendorsResponseVendors'; /** * A Response containing all valid components for the public Vendors endpoint. It is a decisively smaller subset of data compared to what we can get when we know the specific user making the request. If you want any of the other data - item details, whether or not you can buy it, etc... you\'ll have to call in the context of a character. I know, sad but true. */ export interface DestinyResponsesDestinyPublicVendorsResponse { vendorGroups?: DestinyResponsesDestinyVendorsResponseVendorGroups; vendors?: DestinyResponsesDestinyPublicVendorsResponseVendors; categories?: DestinyResponsesDestinyVendorsResponseCategories; sales?: DestinyResponsesDestinyPublicVendorsResponseSales; stringVariables?: DestinyResponsesDestinyPublicVendorsResponseStringVariables; }