UNPKG

@xmobitea/gn-typescript-client

Version:

GearN Typescript Client SDK by XmobiTea (Pro)

76 lines (75 loc) 3.74 kB
import { CustomOperationResponseAbstract } from "./../response/CustomOperationResponse"; import { MultiplayerModels } from "./MultiplayerModels"; export var MultiplayerResponseModels; (function (MultiplayerResponseModels) { class CancelAllMatchmakingTicketOperationResponse extends CustomOperationResponseAbstract { constructor() { super(); this.responseDataCls = MultiplayerModels.CancelAllMatchmakingTicketResponseData; } } MultiplayerResponseModels.CancelAllMatchmakingTicketOperationResponse = CancelAllMatchmakingTicketOperationResponse; class CancelMatchmakingTicketOperationResponse extends CustomOperationResponseAbstract { constructor() { super(); this.responseDataCls = MultiplayerModels.EmptyResponseData; } } MultiplayerResponseModels.CancelMatchmakingTicketOperationResponse = CancelMatchmakingTicketOperationResponse; class CreateMatchmakingTicketOperationResponse extends CustomOperationResponseAbstract { constructor() { super(); this.responseDataCls = MultiplayerModels.CreateMatchmakingTicketResponseData; } } MultiplayerResponseModels.CreateMatchmakingTicketOperationResponse = CreateMatchmakingTicketOperationResponse; class GetMatchmakingTicketOperationResponse extends CustomOperationResponseAbstract { constructor() { super(); this.responseDataCls = MultiplayerModels.GetMatchmakingTicketResponseData; } } MultiplayerResponseModels.GetMatchmakingTicketOperationResponse = GetMatchmakingTicketOperationResponse; class GetMatchOperationResponse extends CustomOperationResponseAbstract { constructor() { super(); this.responseDataCls = MultiplayerModels.GetMatchResponseData; } } MultiplayerResponseModels.GetMatchOperationResponse = GetMatchOperationResponse; class GetQueueStatisticsOperationResponse extends CustomOperationResponseAbstract { constructor() { super(); this.responseDataCls = MultiplayerModels.GetQueueStatisticsResponseData; } } MultiplayerResponseModels.GetQueueStatisticsOperationResponse = GetQueueStatisticsOperationResponse; class JoinMatchmakingTicketOperationResponse extends CustomOperationResponseAbstract { constructor() { super(); this.responseDataCls = MultiplayerModels.EmptyResponseData; } } MultiplayerResponseModels.JoinMatchmakingTicketOperationResponse = JoinMatchmakingTicketOperationResponse; class ListMatchmakingTicketsForPlayerOperationResponse extends CustomOperationResponseAbstract { constructor() { super(); this.responseDataCls = MultiplayerModels.ListMatchmakingTicketsForPlayerResponseData; } } MultiplayerResponseModels.ListMatchmakingTicketsForPlayerOperationResponse = ListMatchmakingTicketsForPlayerOperationResponse; class GetAllMatchOperationResponse extends CustomOperationResponseAbstract { constructor() { super(); this.responseDataCls = MultiplayerModels.GetAllMatchResponseData; } } MultiplayerResponseModels.GetAllMatchOperationResponse = GetAllMatchOperationResponse; class GetAllMatchmakingTicketOperationResponse extends CustomOperationResponseAbstract { constructor() { super(); this.responseDataCls = MultiplayerModels.GetAllMatchmakingTicketResponseData; } } MultiplayerResponseModels.GetAllMatchmakingTicketOperationResponse = GetAllMatchmakingTicketOperationResponse; })(MultiplayerResponseModels || (MultiplayerResponseModels = {}));