Information for an item in the shopping cart for the transaction being sent to the web service.
See Also: Inherited members from object.
|
Constructor |
[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. |
ConstructorSyntax
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
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
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
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
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
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