C# Class BuildIt.CognitiveServices.Models.UsageEventInfo

Information describing a usage event
Datei anzeigen Open project: builttoroam/BuildIt

Private Properties

Property Type Description

Public Methods

Method Description
UsageEventInfo ( ) : System.Linq

Initializes a new instance of the UsageEventInfo class.

UsageEventInfo ( string eventType = default(string), string itemId = default(string), string timestamp = default(string), int count = default(int?), double unitPrice = default(double?) ) : System.Linq

Initializes a new instance of the UsageEventInfo class.

Method Details

UsageEventInfo() public method

Initializes a new instance of the UsageEventInfo class.
public UsageEventInfo ( ) : System.Linq
return System.Linq

UsageEventInfo() public method

Initializes a new instance of the UsageEventInfo class.
public UsageEventInfo ( string eventType = default(string), string itemId = default(string), string timestamp = default(string), int count = default(int?), double unitPrice = default(double?) ) : System.Linq
eventType string The type of the event. Possible values /// include: 'Click', 'RecommendationClick', 'AddShopCart', /// 'RemoveShopCart', 'Purchase'
itemId string The id of the item in context
timestamp string The time of the event
count int The number of items
unitPrice double The price of the item in context
return System.Linq