Constructor.
            
 
    Namespace: 
   MaxMind.MinFraud.Request
    Assembly:
   MaxMind.MinFraud (in MaxMind.MinFraud.dll) Version: 2.0.0
 Syntax
Syntaxpublic Event(
	string transactionId = null,
	string shopId = null,
	Nullable<DateTimeOffset> time = null,
	Nullable<EventType> type = null
)
Public Sub New ( 
	Optional transactionId As String = Nothing,
	Optional shopId As String = Nothing,
	Optional time As Nullable(Of DateTimeOffset) = Nothing,
	Optional type As Nullable(Of EventType) = Nothing
)
public:
Event(
	String^ transactionId = nullptr, 
	String^ shopId = nullptr, 
	Nullable<DateTimeOffset> time = nullptr, 
	Nullable<EventType> type = nullptr
)
new : 
        ?transactionId : string * 
        ?shopId : string * 
        ?time : Nullable<DateTimeOffset> * 
        ?type : Nullable<EventType> 
(* Defaults:
        let _transactionId = defaultArg transactionId null
        let _shopId = defaultArg shopId null
        let _time = defaultArg time null
        let _type = defaultArg type null
*)
-> EventParameters
- transactionId (Optional)
- Type: SystemString
 Your internal ID for the transaction.
            We can use this to locate a specific transaction in our logs, and
            it will also show up in email alerts and notifications from us to
            you.
- shopId (Optional)
- Type: SystemString
 Your internal ID for the shop, affiliate, or
            merchant this order is coming from. Required for minFraud users
            who are resellers, payment providers, gateways and affiliate
            networks.
- time (Optional)
- Type: SystemNullableDateTimeOffset
 The date and time the event occurred. If this
            field is not in the request, the current time will be used.
- type (Optional)
- Type: SystemNullableEventType
 The type of event being scored.
 See Also
See Also