Class AccountTransferRequest
The network request used to request account data when logging in with an identity on a new device for the first
time.
Inheritance
AccountTransferRequest
Assembly: SmartcryptProtocol.dll
Syntax
public sealed class AccountTransferRequest : IRequestHasDeviceAndAppInfo
Constructors
AccountTransferRequest(String, String)
Creates a new account transfer request.
Declaration
public AccountTransferRequest([NotNull] string email, [NotNull] string loginToken)
Parameters
Properties
appName
Declaration
public string appName { get; set; }
Property Value
appVersion
Declaration
public string appVersion { get; set; }
Property Value
deviceId
Declaration
public long deviceId { get; set; }
Property Value
deviceName
Declaration
public string deviceName { get; set; }
Property Value
email
The email address of the identity for which the transfer is being requested.
Declaration
[NotNull]
public string email { get; }
Property Value
loginToken
Used to indicate which password is being used to perform the transfer.
Declaration
[NotNull]
public string loginToken { get; }
Property Value
Declaration
public string platform { get; set; }
Property Value
Implements