// Copyright Epic Games, Inc. All Rights Reserved. // This file is automatically generated. Changes to this file may be overwritten. namespace Epic.OnlineServices.Auth { /// /// Intermediate data needed to complete account restriction verification during login flow, returned by when the ResultCode is /// The URI inside should be exposed to the user for entry in a web browser. The URI must be copied out of this struct before completion of the callback. /// public class AccountFeatureRestrictedInfo : ISettable { /// /// The end-user verification URI. Users must be asked to open the page in a browser to address the restrictions /// public string VerificationURI { get; set; } internal void Set(AccountFeatureRestrictedInfoInternal? other) { if (other != null) { VerificationURI = other.Value.VerificationURI; } } public void Set(object other) { Set(other as AccountFeatureRestrictedInfoInternal?); } } [System.Runtime.InteropServices.StructLayout(System.Runtime.InteropServices.LayoutKind.Sequential, Pack = 8)] internal struct AccountFeatureRestrictedInfoInternal : ISettable, System.IDisposable { private int m_ApiVersion; private System.IntPtr m_VerificationURI; public string VerificationURI { get { string value; Helper.TryMarshalGet(m_VerificationURI, out value); return value; } set { Helper.TryMarshalSet(ref m_VerificationURI, value); } } public void Set(AccountFeatureRestrictedInfo other) { if (other != null) { m_ApiVersion = AuthInterface.AccountfeaturerestrictedinfoApiLatest; VerificationURI = other.VerificationURI; } } public void Set(object other) { Set(other as AccountFeatureRestrictedInfo); } public void Dispose() { Helper.TryMarshalDispose(ref m_VerificationURI); } } }