// Copyright Epic Games, Inc. All Rights Reserved. // This file is automatically generated. Changes to this file may be overwritten. namespace Epic.OnlineServices.Lobby { /// /// Input parameters for the function. /// public class LobbySearchCopySearchResultByIndexOptions { /// /// The index of the lobby to retrieve within the completed search query /// /// public uint LobbyIndex { get; set; } } [System.Runtime.InteropServices.StructLayout(System.Runtime.InteropServices.LayoutKind.Sequential, Pack = 8)] internal struct LobbySearchCopySearchResultByIndexOptionsInternal : ISettable, System.IDisposable { private int m_ApiVersion; private uint m_LobbyIndex; public uint LobbyIndex { set { m_LobbyIndex = value; } } public void Set(LobbySearchCopySearchResultByIndexOptions other) { if (other != null) { m_ApiVersion = LobbySearch.LobbysearchCopysearchresultbyindexApiLatest; LobbyIndex = other.LobbyIndex; } } public void Set(object other) { Set(other as LobbySearchCopySearchResultByIndexOptions); } public void Dispose() { } } }