btcpayserver/BTCPayServer/Plugins/Shopify/ApiModels/TransactionsCreateReq.cs
Andrew Camilleri 5de93f8cc4
Abstract Store integrations (#2384)
* Decouple Shopify from Store

* Decouple shopify from store blob

* Update BTCPayServer.Tests.csproj

* Make sure shopify obj is set

* make shopify a system plugin
2021-04-08 13:37:05 +09:00

20 lines
595 B
C#

namespace BTCPayServer.Plugins.Shopify.ApiModels
{
public class TransactionsCreateReq
{
public DataHolder transaction { get; set; }
public class DataHolder
{
public string currency { get; set; }
public string amount { get; set; }
public string kind { get; set; }
public long? parent_id { get; set; }
public string gateway { get; set; }
public string source { get; set; }
public string status { get; set; }
public string authorization { get; set; }
}
}
}