// Copyright Epic Games, Inc. All Rights Reserved. // This file is automatically generated. Changes to this file may be overwritten. namespace Epic.OnlineServices.Auth { /// /// Input parameters for the function. /// This operation is destructive, the pointer will remain the same but the data pointers inside will update /// public class VerifyUserAuthOptions { /// /// Auth token to verify against the backend service /// public Token AuthToken { get; set; } } [System.Runtime.InteropServices.StructLayout(System.Runtime.InteropServices.LayoutKind.Sequential, Pack = 8)] internal struct VerifyUserAuthOptionsInternal : ISettable, System.IDisposable { private int m_ApiVersion; private System.IntPtr m_AuthToken; public Token AuthToken { set { Helper.TryMarshalSet(ref m_AuthToken, value); } } public void Set(VerifyUserAuthOptions other) { if (other != null) { m_ApiVersion = AuthInterface.VerifyuserauthApiLatest; AuthToken = other.AuthToken; } } public void Set(object other) { Set(other as VerifyUserAuthOptions); } public void Dispose() { Helper.TryMarshalDispose(ref m_AuthToken); } } }