// Copyright Epic Games, Inc. All Rights Reserved. // This file is automatically generated. Changes to this file may be overwritten. namespace Epic.OnlineServices.AntiCheatServer { public struct AddNotifyMessageToClientOptions { } [System.Runtime.InteropServices.StructLayout(System.Runtime.InteropServices.LayoutKind.Sequential, Pack = 8)] internal struct AddNotifyMessageToClientOptionsInternal : ISettable, System.IDisposable { private int m_ApiVersion; public void Set(ref AddNotifyMessageToClientOptions other) { m_ApiVersion = AntiCheatServerInterface.AddnotifymessagetoclientApiLatest; } public void Set(ref AddNotifyMessageToClientOptions? other) { if (other.HasValue) { m_ApiVersion = AntiCheatServerInterface.AddnotifymessagetoclientApiLatest; } } public void Dispose() { } } }