bungie-net-core
Version:
An easy way to interact with the Bungie.net API
24 lines (23 loc) • 930 B
TypeScript
/** @see {@link https://bungie-net.github.io/#/components/schemas/Applications.ApplicationStatus} */
export declare const ApplicationStatus: {
/** No value assigned */
readonly 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.
*/
readonly Private: 1;
/** Active applications that can appear in an catalog. */
readonly 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.
*/
readonly 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.
*/
readonly Blocked: 4;
};