bungie-net-core
Version:
An easy way to interact with the Bungie.net API
18 lines (17 loc) • 515 B
TypeScript
/**
* This enum represents a set of flags - use bitwise operators to check which of
* these match your value.
* @see {@link https://bungie-net.github.io/#/components/schemas/User.OptInFlags}
*/
export declare const OptInFlags: {
readonly None: 0;
readonly Newsletter: 1;
readonly System: 2;
readonly Marketing: 4;
readonly UserResearch: 8;
readonly CustomerService: 16;
readonly Social: 32;
readonly PlayTests: 64;
readonly PlayTestsLocal: 128;
readonly Careers: 256;
};