Skip to content
This repository has been archived by the owner on Nov 10, 2020. It is now read-only.

Commit

Permalink
Merge pull request #56 from TDaphneB/patch-1
Browse files Browse the repository at this point in the history
Added Code and Reference fields to BatchPayments.
  • Loading branch information
richard-rowley committed Jul 22, 2014
2 parents 045c618 + 6b206ec commit 045e535
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion source/XeroApi/Model/BatchPayments.cs
Expand Up @@ -10,6 +10,8 @@ public class BatchPayments
public string BankAccountNumber { get; set; }
public string BankAccountName { get; set; }
public string Details { get; set; }
public string Code { get; set; }
public string Reference { get; set; }

public override string ToString()
{
Expand All @@ -20,7 +22,11 @@ public override string ToString()
sb.AppendFormat("Bank Account Name: {0} ", BankAccountName);

sb.AppendFormat("Details: {0}", Details);


sb.AppendFormat("Code: {0}", Code);

sb.AppendFormat("Reference: {0}", Reference);

return sb.ToString();
}
}
Expand Down

0 comments on commit 045e535

Please sign in to comment.