// 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 CopySessionHandleByUiEventIdOptions { /// /// UI Event associated with the session /// public ulong UiEventId { get; set; } } [System.Runtime.InteropServices.StructLayout(System.Runtime.InteropServices.LayoutKind.Sequential, Pack = 8)] internal struct CopySessionHandleByUiEventIdOptionsInternal : ISettable, System.IDisposable { private int m_ApiVersion; private ulong m_UiEventId; public ulong UiEventId { set { m_UiEventId = value; } } public void Set(ref CopySessionHandleByUiEventIdOptions other) { m_ApiVersion = SessionsInterface.CopysessionhandlebyuieventidApiLatest; UiEventId = other.UiEventId; } public void Set(ref CopySessionHandleByUiEventIdOptions? other) { if (other.HasValue) { m_ApiVersion = SessionsInterface.CopysessionhandlebyuieventidApiLatest; UiEventId = other.Value.UiEventId; } } public void Dispose() { } } }