// 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 struct LobbyModificationRemoveMemberAttributeOptions { /// /// Name of the key /// public Utf8String Key { get; set; } } [System.Runtime.InteropServices.StructLayout(System.Runtime.InteropServices.LayoutKind.Sequential, Pack = 8)] internal struct LobbyModificationRemoveMemberAttributeOptionsInternal : ISettable, System.IDisposable { private int m_ApiVersion; private System.IntPtr m_Key; public Utf8String Key { set { Helper.Set(value, ref m_Key); } } public void Set(ref LobbyModificationRemoveMemberAttributeOptions other) { m_ApiVersion = LobbyModification.LobbymodificationRemovememberattributeApiLatest; Key = other.Key; } public void Set(ref LobbyModificationRemoveMemberAttributeOptions? other) { if (other.HasValue) { m_ApiVersion = LobbyModification.LobbymodificationRemovememberattributeApiLatest; Key = other.Value.Key; } } public void Dispose() { Helper.Dispose(ref m_Key); } } }