Skip to content
This repository was archived by the owner on Apr 12, 2021. It is now read-only.

Commit 243608f

Browse files
authored
Merge pull request #345 from mattliuoz/master
Add batch payment id to invoice class
2 parents ea3f4ab + a2e337c commit 243608f

1 file changed

Lines changed: 2 additions & 0 deletions

File tree

Xero.Api/Core/Model/Payment.cs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,8 @@ public class Payment : HasUpdatedDate, IHasId
1111
{
1212
[DataMember(Name = "PaymentID", EmitDefaultValue = false)]
1313
public Guid Id { get; set; }
14+
[DataMember(Name = "BatchPaymentID", EmitDefaultValue = false)]
15+
public Guid? BatchPaymentID { get; set; }
1416

1517
[DataMember(Name = "PaymentType", EmitDefaultValue = false)]
1618
public PaymentType Type { get; set; }

0 commit comments

Comments
 (0)