InventoryReport.Get C# (CSharp) 메소드

Get() 공개 메소드

public Get ( ) : object>.Dictionary
리턴 object>.Dictionary
	public Dictionary<string, object> Get () {
		return details;
	}

Usage Example

	// Send an inventory event (containing a full status on the inventory
	// TODO: Add an inventory report class: containing fall status of inventory in a dict
	void sendInventoryEvent (string eventName, InventoryReport inventoryReport) {
		Mixpanel.SendEvent (
			eventName,
			inventoryReport.Get()
		);
	}