47 lines
961 B
C#
47 lines
961 B
C#
using Ratermania.Shopify;
|
|
using System;
|
|
|
|
namespace PartSource.Data.Shopify
|
|
{
|
|
public class ProductVariant : ShopifyEntity
|
|
{
|
|
public string Option1 { get; set; }
|
|
|
|
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; }
|
|
}
|
|
}
|