Skip to content

Instantly share code, notes, and snippets.

@websterian
Created March 2, 2018 21:13
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save websterian/3d28caff7eb9fdd9815812a4ebcde0d7 to your computer and use it in GitHub Desktop.
Save websterian/3d28caff7eb9fdd9815812a4ebcde0d7 to your computer and use it in GitHub Desktop.
using Sitecore.Commerce.Core;
using Sitecore.Commerce.Plugin.Pricing;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
namespace Sitecore.Commerce.Plugin.Reporting.Model
{
public class OrderDiscountAdjustment
{
public string Id { get; set; }
//
// Summary:
// Gets or sets the display name.
public string DisplayName { get; set; }
//
// Summary:
// Gets or sets the name.
public string Name { get; set; }
//
// Summary:
// Gets or sets the adjustment.
public Money Adjustment { get; set; }
//
// Summary:
// Gets or sets the type of the adjustment.
public string AdjustmentType { get; set; }
//
// Summary:
// Gets or sets the awarding block.
public string AwardingBlock { get; set; }
//
// Summary:
// Gets or sets a value indicating whether [include in total].
public bool IncludeInGrandTotal { get; set; }
//
// Summary:
// Gets or sets a value indicating whether this instance is taxable.
public bool IsTaxable { get; set; }
public string OrderId { get; set; }
public OrderDiscountAdjustment()
{
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment