Files
Partsource/PartSource.Entities/Shopify/ProductVariant.cs
2020-04-12 20:52:03 -04:00

50 lines
1.2 KiB
C#

// Decompiled with JetBrains decompiler
// Type: PartSource.Entities.Shopify.ProductVariant
// Assembly: PartSource.Entities, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
// MVID: 3EDAB3F5-83E7-4F65-906E-B40192014C57
// Assembly location: C:\Users\Tommy\Desktop\PS temp\PartSource.Entities.dll
using System;
namespace PartSource.Entities.Shopify
{
public class ProductVariant : BaseShopifyModel
{
public long ImageId { get; set; }
public long InventoryItemId { get; set; }
public long ProductId { get; set; }
public int Position { get; set; }
public bool RequiresShipping { get; set; }
public bool Taxable { get; set; }
public Decimal CompareAtPrice { get; set; }
public Decimal Price { get; set; }
public double Grams { get; set; }
public double Weight { get; set; }
public string Barcode { get; set; }
public string Sku { get; set; }
public string Title { get; set; }
public string FulfillmentService { get; set; }
public string InventoryManagement { get; set; }
public Metafield[] Metafields { get; set; }
public string InventoryPolicy { get; set; }
public string WeightUnit { get; set; }
}
}