Class OrderPaymentLog
Holds logs regarding payments on an order
[JsonObject(NamingStrategyType = typeof(CamelCaseNamingStrategy))]
public class OrderPaymentLog
- Inheritance
-
OrderPaymentLog
- Inherited Members
Properties
CreatedAt
public DateTime CreatedAt { get; set; }
Property Value
ExternalID
public string ExternalID { get; set; }
Property Value
Id
public Guid Id { get; set; }
Property Value
Message
public string Message { get; set; }
Property Value
Order
[JsonIgnore]
[JsonIgnore]
public Order Order { get; set; }
Property Value
OrderId
public Guid OrderId { get; set; }
Property Value
Payment
[Column(TypeName = "DECIMAL(19, 4)")]
public decimal Payment { get; set; }
Property Value
Type
public OrderPaymentLogType Type { get; set; }