/// <summary>
        /// Returns true if InventoryOrderCreation instances are equal
        /// </summary>
        /// <param name="other">Instance of InventoryOrderCreation to be compared</param>
        /// <returns>Boolean</returns>
        public bool Equals(InventoryOrderCreation other)
        {
            if (ReferenceEquals(null, other))
            {
                return(false);
            }
            if (ReferenceEquals(this, other))
            {
                return(true);
            }

            return
                ((
                     HasOnlyUntaggedAssets == other.HasOnlyUntaggedAssets ||
                     HasOnlyUntaggedAssets != null &&
                     HasOnlyUntaggedAssets.Equals(other.HasOnlyUntaggedAssets)
                     ) &&
                 (
                     InventoryVariantName == other.InventoryVariantName ||
                     InventoryVariantName != null &&
                     InventoryVariantName.Equals(other.InventoryVariantName)
                 ) &&
                 (
                     ReportDate == other.ReportDate ||
                     ReportDate != null &&
                     ReportDate.Equals(other.ReportDate)
                 ));
        }
 /// <summary>
 /// Gets the hash code
 /// </summary>
 /// <returns>Hash code</returns>
 public override int GetHashCode()
 {
     unchecked // Overflow is fine, just wrap
     {
         var hashCode = 41;
         // Suitable nullity checks etc, of course :)
         if (HasOnlyUntaggedAssets != null)
         {
             hashCode = hashCode * 59 + HasOnlyUntaggedAssets.GetHashCode();
         }
         if (InventoryVariantName != null)
         {
             hashCode = hashCode * 59 + InventoryVariantName.GetHashCode();
         }
         if (ReportDate != null)
         {
             hashCode = hashCode * 59 + ReportDate.GetHashCode();
         }
         return(hashCode);
     }
 }