// Copyright Epic Games, Inc. All Rights Reserved. // This file is automatically generated. Changes to this file may be overwritten. namespace Epic.OnlineServices.Metrics { /// /// EndPlayerSession. /// public class EndPlayerSessionOptions { public EndPlayerSessionOptionsAccountId AccountId { get; set; } } [System.Runtime.InteropServices.StructLayout(System.Runtime.InteropServices.LayoutKind.Sequential, Pack = 8)] internal struct EndPlayerSessionOptionsInternal : ISettable, System.IDisposable { private int m_ApiVersion; private EndPlayerSessionOptionsAccountIdInternal m_AccountId; public EndPlayerSessionOptionsAccountId AccountId { set { Helper.TryMarshalSet(ref m_AccountId, value); } } public void Set(EndPlayerSessionOptions other) { if (other != null) { m_ApiVersion = MetricsInterface.EndplayersessionApiLatest; AccountId = other.AccountId; } } public void Set(object other) { Set(other as EndPlayerSessionOptions); } public void Dispose() { Helper.TryMarshalDispose(ref m_AccountId); } } }