import { CustomOperationResponseAbstract } from "./../response/CustomOperationResponse"; import { DashboardModels } from "./DashboardModels"; /** * Typed response wrappers for the Dashboard domain. * * Each class extends {@link CustomOperationResponseAbstract} * and binds a response DTO from {@link DashboardModels}. * * Many mutation operations (create / set / remove) resolve to * an `EmptyResponseData` because the only useful signal is * the transport return code + domain `errorCode`. Read / * listing operations resolve to richer dashboard-specific DTOs * such as `GameInformationResponseData`, * `AdminAccountListResponseData`, `AnalyticsResponseData`, * etc. */ export declare namespace DashboardResponseModels { /** * Maps the ChangePasswordAdminAccount operation to a typed response wrapper. */ class ChangePasswordAdminAccountOperationResponse extends CustomOperationResponseAbstract { /** * Creates a new ChangePasswordAdminAccountOperationResponse instance. */ constructor(); } /** * Maps the GetAdminAccountList operation to a typed response wrapper. */ class GetAdminAccountListOperationResponse extends CustomOperationResponseAbstract { /** * Creates a new GetAdminAccountListOperationResponse instance. */ constructor(); } /** * Maps the GetGameInformation operation to a typed response wrapper. */ class GetGameInformationOperationResponse extends CustomOperationResponseAbstract { /** * Creates a new GetGameInformationOperationResponse instance. */ constructor(); } /** * Maps the GetGameList operation to a typed response wrapper. */ class GetGameListOperationResponse extends CustomOperationResponseAbstract { /** * Creates a new GetGameListOperationResponse instance. */ constructor(); } /** * Maps the GetMasterGameSettings operation to a typed response wrapper. */ class GetMasterGameSettingsOperationResponse extends CustomOperationResponseAbstract { /** * Creates a new GetMasterGameSettingsOperationResponse instance. */ constructor(); } /** * Maps the GetSecretInfoInformation operation to a typed response wrapper. */ class GetSecretInfoInformationOperationResponse extends CustomOperationResponseAbstract { /** * Creates a new GetSecretInfoInformationOperationResponse instance. */ constructor(); } /** * Maps the GetSecretInfoList operation to a typed response wrapper. */ class GetSecretInfoListOperationResponse extends CustomOperationResponseAbstract { /** * Creates a new GetSecretInfoListOperationResponse instance. */ constructor(); } /** * Maps the GetServerLog operation to a typed response wrapper. */ class GetServerLogOperationResponse extends CustomOperationResponseAbstract { /** * Creates a new GetServerLogOperationResponse instance. */ constructor(); } /** * Maps the CreateAdminAccount operation to a typed response wrapper. */ class CreateAdminAccountOperationResponse extends CustomOperationResponseAbstract { /** * Creates a new CreateAdminAccountOperationResponse instance. */ constructor(); } /** * Maps the CreateGame operation to a typed response wrapper. */ class CreateGameOperationResponse extends CustomOperationResponseAbstract { /** * Creates a new CreateGameOperationResponse instance. */ constructor(); } /** * Maps the CreateSecretInfo operation to a typed response wrapper. */ class CreateSecretInfoOperationResponse extends CustomOperationResponseAbstract { /** * Creates a new CreateSecretInfoOperationResponse instance. */ constructor(); } /** * Maps the LoginByAdminAccount operation to a typed response wrapper. */ class LoginByAdminAccountOperationResponse extends CustomOperationResponseAbstract { /** * Creates a new LoginByAdminAccountOperationResponse instance. */ constructor(); } /** * Maps the RemoveAdminAccount operation to a typed response wrapper. */ class RemoveAdminAccountOperationResponse extends CustomOperationResponseAbstract { /** * Creates a new RemoveAdminAccountOperationResponse instance. */ constructor(); } /** * Maps the SetGameInformation operation to a typed response wrapper. */ class SetGameInformationOperationResponse extends CustomOperationResponseAbstract { /** * Creates a new SetGameInformationOperationResponse instance. */ constructor(); } /** * Maps the SetMasterGameSettings operation to a typed response wrapper. */ class SetMasterGameSettingsOperationResponse extends CustomOperationResponseAbstract { /** * Creates a new SetMasterGameSettingsOperationResponse instance. */ constructor(); } /** * Maps the SetPasswordAdminAccount operation to a typed response wrapper. */ class SetPasswordAdminAccountOperationResponse extends CustomOperationResponseAbstract { /** * Creates a new SetPasswordAdminAccountOperationResponse instance. */ constructor(); } /** * Maps the SetSecretInfoInformation operation to a typed response wrapper. */ class SetSecretInfoInformationOperationResponse extends CustomOperationResponseAbstract { /** * Creates a new SetSecretInfoInformationOperationResponse instance. */ constructor(); } /** * Maps the SetSecretKeyAdminAccount operation to a typed response wrapper. */ class SetSecretKeyAdminAccountOperationResponse extends CustomOperationResponseAbstract { /** * Creates a new SetSecretKeyAdminAccountOperationResponse instance. */ constructor(); } /** * Maps the GetUsernameAdminAccount operation to a typed response wrapper. */ class GetUsernameAdminAccountOperationResponse extends CustomOperationResponseAbstract { /** * Creates a new GetUsernameAdminAccountOperationResponse instance. */ constructor(); } /** * Maps the GetAnalytics operation to a typed response wrapper. */ class GetAnalyticsOperationResponse extends CustomOperationResponseAbstract { /** * Creates a new GetAnalyticsOperationResponse instance. */ constructor(); } /** * Maps the GetEventCallbackCloudScript operation to a typed response wrapper. */ class GetEventCallbackCloudScriptOperationResponse extends CustomOperationResponseAbstract { /** * Creates a new GetEventCallbackCloudScriptOperationResponse instance. */ constructor(); } /** * Maps the SetEventCallbackCloudScript operation to a typed response wrapper. */ class SetEventCallbackCloudScriptOperationResponse extends CustomOperationResponseAbstract { /** * Creates a new SetEventCallbackCloudScriptOperationResponse instance. */ constructor(); } /** * Maps the ResetStatisticsLeaderboard operation to a typed response wrapper. */ class ResetStatisticsLeaderboardOperationResponse extends CustomOperationResponseAbstract { /** * Creates a new ResetStatisticsLeaderboardOperationResponse instance. */ constructor(); } /** * Maps the GetBackupStatisticsLeaderboardVersion operation to a typed response wrapper. */ class GetBackupStatisticsLeaderboardVersionOperationResponse extends CustomOperationResponseAbstract { /** * Creates a new GetBackupStatisticsLeaderboardVersionOperationResponse instance. */ constructor(); } /** * Maps the GetServerGameData operation to a typed response wrapper. */ class GetServerGameDataOperationResponse extends CustomOperationResponseAbstract { /** * Creates a new GetServerGameDataOperationResponse instance. */ constructor(); } /** * Maps the DeleteInDatabase operation to a typed response wrapper. */ class DeleteInDatabaseOperationResponse extends CustomOperationResponseAbstract { /** * Creates a new DeleteInDatabaseOperationResponse instance. */ constructor(); } }