Constructor.
Namespace:
MaxMind.MinFraud.Request
Assembly:
MaxMind.MinFraud (in MaxMind.MinFraud.dll) Version: 2.0.0
Syntaxpublic Account(
string userId = null,
string username = null
)
Public Sub New (
Optional userId As String = Nothing,
Optional username As String = Nothing
)
public:
Account(
String^ userId = nullptr,
String^ username = nullptr
)
new :
?userId : string *
?username : string
(* Defaults:
let _userId = defaultArg userId null
let _username = defaultArg username null
*)
-> Account
Parameters
- userId (Optional)
- Type: SystemString
A unique user ID associated with the end-user
in your system. If your system allows the login name for the
account to be changed, this should not be the login name for the
account, but rather should be an internal ID that does not
change. This is not your MaxMind account ID. - username (Optional)
- Type: SystemString
The username associated with the account.
This is not the MD5 of username. Rather, the MD is automatically
generated from this string.
See Also