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