/**
 * 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.
 *
 * Contact: support@bungie.com
 *
 * NOTE: This class is auto generated by the bungie-net-core code generator program
 * Repository: {@link https://github.com/owens1127/bungie-net-core}
 * Do not edit these files manually.
 */
/**
 * If a vendor can ever end up performing actions, these are the properties that
 * will be related to those actions. I'm not going to bother documenting this yet,
 * as it is unused and unclear if it will ever be used... but in case it is ever
 * populated and someone finds it useful, it is defined here.
 * @see {@link https://bungie-net.github.io/#/components/schemas/Destiny.Definitions.DestinyVendorActionDefinition}
 */
export interface DestinyVendorActionDefinition {
    readonly description: string;
    readonly executeSeconds: number;
    readonly icon: string;
    readonly name: string;
    readonly verb: string;
    readonly isPositive: boolean;
    readonly actionId: string;
    readonly actionHash: number;
    readonly autoPerformAction: boolean;
}
