Class PaymentMethod
Stores settings for a payment processor
[JsonObject(NamingStrategyType = typeof(CamelCaseNamingStrategy))]
public class PaymentMethod : IEntity
- Inheritance
-
PaymentMethod
- Implements
- Inherited Members
Properties
Baskets
[JsonIgnore]
public IEnumerable<Basket> Baskets { get; set; }
Property Value
Id
public Guid Id { get; set; }
Property Value
Name
public string Name { get; set; }
Property Value
Orders
[JsonIgnore]
public IEnumerable<Order> Orders { get; set; }
Property Value
Processor
public string? Processor { get; set; }
Property Value
ProcessorSettings
public string? ProcessorSettings { get; set; }
Property Value
Store
[JsonIgnore]
public Store Store { get; set; }
Property Value
StoreId
public Guid StoreId { get; set; }