bungie-api-ts-no-const-enum
Version:
TypeScript mappings for the Bungie.net API
37 lines (36 loc) • 1.11 kB
TypeScript
/**
* 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.
*
* OpenAPI spec version: 2.18.0
* Contact: support@bungie.com
*
* NOTE: This class is auto generated by the bungie-api-ts-no-const-enum code generator program.
* https://github.com/jbccollins/bungie-api-ts-no-const-enum
* Do not edit these files manually.
*/
export interface IgnoreResponse {
readonly isIgnored: boolean;
/**
* This enum represents a set of flags - use bitwise operators to check which of
* these match your value.
*/
readonly ignoreFlags: IgnoreStatus;
}
/**
* This enum represents a set of flags - use bitwise operators to check which of
* these match your value.
*/
export declare enum IgnoreStatus {
NotIgnored = 0,
IgnoredUser = 1,
IgnoredGroup = 2,
IgnoredByGroup = 4,
IgnoredPost = 8,
IgnoredTag = 16,
IgnoredGlobal = 32,
}
export interface TagResponse {
readonly tagText: string;
readonly ignoreStatus: IgnoreResponse;
}