import { Model } from './model'; import { Game } from './game'; import { Namespace } from './namespace'; import { User } from './user'; export declare namespace IGameAuthorization { enum GameAuthorizationStatus { Granted = "granted", Pending = "pending", Revoked = "revoked" } } export declare class GameAuthorization extends Model { game: Game; gameId: string; namespace: Namespace; namespaceId: string; status: IGameAuthorization.GameAuthorizationStatus; user: User; userId: string; constructor(params?: Partial); }