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