// Copyright Epic Games, Inc. All Rights Reserved.
// This file is automatically generated. Changes to this file may be overwritten.
namespace Epic.OnlineServices.Connect
{
///
/// Structure containing information for the auth expiration notification callback.
///
public struct AddNotifyAuthExpirationOptions
{
}
[System.Runtime.InteropServices.StructLayout(System.Runtime.InteropServices.LayoutKind.Sequential, Pack = 8)]
internal struct AddNotifyAuthExpirationOptionsInternal : ISettable, System.IDisposable
{
private int m_ApiVersion;
public void Set(ref AddNotifyAuthExpirationOptions other)
{
m_ApiVersion = ConnectInterface.AddnotifyauthexpirationApiLatest;
}
public void Set(ref AddNotifyAuthExpirationOptions? other)
{
if (other.HasValue)
{
m_ApiVersion = ConnectInterface.AddnotifyauthexpirationApiLatest;
}
}
public void Dispose()
{
}
}
}