MaxMind.MinFraud : MaxMind.MinFraud.Request Namespace

ShoppingCartItem Class

Information for an item in the shopping cart for the transaction being sent to the web service.

Syntax

public sealed class ShoppingCartItem

Remarks

Documentation for this section has not yet been entered.

Requirements

Namespace: MaxMind.MinFraud.Request
Assembly: MaxMind.MinFraud (in MaxMind.MinFraud.dll)
Assembly Versions: 0.6.0.0

Members

See Also: Inherited members from object.

Public Constructors

Public Properties

[read-only]
Category string . The category of the item.
[read-only]
ItemId string . Your internal ID for the item.
[read-only]
Price Nullable<decimal> . The per-unit price of the item in the shopping cart. This should use the same currency as the order currency.
[read-only]
Quantity Nullable<int> . The quantity of the item in the shopping cart.

Public Methods

override
ToString () : string
Returns a string that represents the current object.

Member Details

ShoppingCartItem Constructor

Constructor

Syntax

public ShoppingCartItem (string category, string itemId, Nullable<int> quantity, Nullable<decimal> price)

Parameters

category
The category of the item.
itemId
Your internal ID for the item.
quantity
The quantity of the item in the shopping cart. This must be positive
price
The price of the item in the shopping cart. This should be the same currency as the order currency.

Remarks

Documentation for this section has not yet been entered.

Requirements

Namespace: MaxMind.MinFraud.Request
Assembly: MaxMind.MinFraud (in MaxMind.MinFraud.dll)
Assembly Versions: 0.6.0.0

Category Property

The category of the item.

Syntax

[Newtonsoft.Json.JsonProperty("category")]
public string Category { get; }

Value

Documentation for this section has not yet been entered.

Remarks

Documentation for this section has not yet been entered.

Requirements

Namespace: MaxMind.MinFraud.Request
Assembly: MaxMind.MinFraud (in MaxMind.MinFraud.dll)
Assembly Versions: 0.6.0.0

ItemId Property

Your internal ID for the item.

Syntax

[Newtonsoft.Json.JsonProperty("item_id")]
public string ItemId { get; }

Value

Documentation for this section has not yet been entered.

Remarks

Documentation for this section has not yet been entered.

Requirements

Namespace: MaxMind.MinFraud.Request
Assembly: MaxMind.MinFraud (in MaxMind.MinFraud.dll)
Assembly Versions: 0.6.0.0

Price Property

The per-unit price of the item in the shopping cart. This should use the same currency as the order currency.

Syntax

[Newtonsoft.Json.JsonProperty("price")]
public Nullable<decimal> Price { get; }

Value

Documentation for this section has not yet been entered.

Remarks

Documentation for this section has not yet been entered.

Requirements

Namespace: MaxMind.MinFraud.Request
Assembly: MaxMind.MinFraud (in MaxMind.MinFraud.dll)
Assembly Versions: 0.6.0.0

Quantity Property

The quantity of the item in the shopping cart.

Syntax

[Newtonsoft.Json.JsonProperty("quantity")]
public Nullable<int> Quantity { get; }

Value

Documentation for this section has not yet been entered.

Remarks

Documentation for this section has not yet been entered.

Requirements

Namespace: MaxMind.MinFraud.Request
Assembly: MaxMind.MinFraud (in MaxMind.MinFraud.dll)
Assembly Versions: 0.6.0.0

ToString Method

Returns a string that represents the current object.

Syntax

public override string ToString ()

Returns

A string that represents the current object.

Remarks

Documentation for this section has not yet been entered.

Requirements

Namespace: MaxMind.MinFraud.Request
Assembly: MaxMind.MinFraud (in MaxMind.MinFraud.dll)
Assembly Versions: 0.6.0.0