UNPKG

bungie-net-core

Version:

An easy way to interact with the Bungie.net API

34 lines (33 loc) 1.33 kB
/** * 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. */ /** @see {@link https://bungie-net.github.io/#/components/schemas/Applications.ApplicationStatus} */ export declare enum ApplicationStatus { /** No value assigned */ None = 0, /** * Application exists and works but will not appear in any public catalog. New * applications start in this state, test applications will remain in this state. */ Private = 1, /** Active applications that can appear in an catalog. */ Public = 2, /** * Application disabled by the owner. All authorizations will be treated as * terminated while in this state. Owner can move back to private or public state. */ Disabled = 3, /** * Application has been blocked by Bungie. It cannot be transitioned out of this * state by the owner. Authorizations are terminated when an application is in this * state. */ Blocked = 4 }