Skip to content

Commit

Permalink
Crankshaft[BU000005YAAB2A] .NET client @ 2018-07-12 15:00:14 UTC
Browse files Browse the repository at this point in the history
  • Loading branch information
Crankshaft Robot committed Jul 12, 2018
1 parent 22cdcda commit e01f736
Showing 1 changed file with 36 additions and 0 deletions.
36 changes: 36 additions & 0 deletions GoCardless/Services/MandatePdfService.cs
Original file line number Diff line number Diff line change
Expand Up @@ -141,6 +141,24 @@ public class MandatePdfCreateRequest
[JsonProperty("account_number")]
public string AccountNumber { get; set; }

/// <summary>
/// The first line of the customer's address.
/// </summary>
[JsonProperty("address_line1")]
public string AddressLine1 { get; set; }

/// <summary>
/// The second line of the customer's address.
/// </summary>
[JsonProperty("address_line2")]
public string AddressLine2 { get; set; }

/// <summary>
/// The third line of the customer's address.
/// </summary>
[JsonProperty("address_line3")]
public string AddressLine3 { get; set; }

/// <summary>
/// Bank code - see [local details](#appendix-local-bank-details) for
/// more information. Alternatively you can provide an `iban`.
Expand All @@ -162,6 +180,12 @@ public class MandatePdfCreateRequest
[JsonProperty("branch_code")]
public string BranchCode { get; set; }

/// <summary>
/// The city of the customer's address.
/// </summary>
[JsonProperty("city")]
public string City { get; set; }

/// <summary>
/// [ISO
/// 3166-1](http://en.wikipedia.org/wiki/ISO_3166-1_alpha-2#Officially_assigned_code_elements)
Expand Down Expand Up @@ -215,6 +239,18 @@ public class MandatePdfLinks
[JsonProperty("mandate_reference")]
public string MandateReference { get; set; }

/// <summary>
/// The customer's postal code.
/// </summary>
[JsonProperty("postal_code")]
public string PostalCode { get; set; }

/// <summary>
/// The customer's address region, county or department.
/// </summary>
[JsonProperty("region")]
public string Region { get; set; }

/// <summary>
/// Direct Debit scheme. Can be supplied or automatically detected from
/// the bank account details provided. If you do not provide a scheme,
Expand Down

0 comments on commit e01f736

Please sign in to comment.