// 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 struct 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(ref SessionSearchCopySearchResultByIndexOptions other)
{
m_ApiVersion = SessionSearch.SessionsearchCopysearchresultbyindexApiLatest;
SessionIndex = other.SessionIndex;
}
public void Set(ref SessionSearchCopySearchResultByIndexOptions? other)
{
if (other.HasValue)
{
m_ApiVersion = SessionSearch.SessionsearchCopysearchresultbyindexApiLatest;
SessionIndex = other.Value.SessionIndex;
}
}
public void Dispose()
{
}
}
}