Class LaybuyOrderRefund
Represents a refund previously made against an order.
Inherited Members
Namespace: Yort.Laybuy.InStore
Assembly: Yort.Laybuy.InStore.dll
Syntax
public class LaybuyOrderRefund
Properties
| Improve this Doc View SourceAmount
Gets or sets the amount of the refund.
Declaration
[JsonProperty("amount")]
public decimal Amount { get; set; }
Property Value
Type | Description |
---|---|
Decimal | The amount. |
DateTime
Gets or sets the date time at which the refund occurred.
Declaration
[JsonProperty("dateTime")]
public DateTime DateTime { get; set; }
Property Value
Type | Description |
---|---|
DateTime | The date time. |
RefundId
Gets or sets the refund identifier.
Declaration
[JsonProperty("refundId")]
public int RefundId { get; set; }
Property Value
Type | Description |
---|---|
Int32 | The refund identifier. |
RefundReference
Gets or sets the refund reference.
Declaration
[JsonProperty("refundReference")]
public string RefundReference { get; set; }
Property Value
Type | Description |
---|---|
String | The refund reference. |
User
Gets or sets the user that made the refund.
Declaration
[JsonProperty("user")]
public string User { get; set; }
Property Value
Type | Description |
---|---|
String | The user. |
UserNote
Gets or sets the user entered note of the refund.
Declaration
[JsonProperty("userNote")]
public string UserNote { get; set; }
Property Value
Type | Description |
---|---|
String | The user note. |