Skip to content

Commit

Permalink
Changes generated by 145b9f24301dfff38845a20a56966380fccefa63
Browse files Browse the repository at this point in the history
  • Loading branch information
gocardless-robot committed Oct 9, 2020
1 parent 9209703 commit 47a3a0a
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 9 deletions.
5 changes: 2 additions & 3 deletions GoCardless/Resources/Payment.cs
Original file line number Diff line number Diff line change
Expand Up @@ -38,9 +38,8 @@ public class Payment
/// A future date on which the payment should be collected. If not
/// specified, the payment will be collected as soon as possible. If the
/// value is before the [mandate](#core-endpoints-mandates)'s
/// `next_possible_charge_date` we will roll it forwards to match. If
/// the value is not a working day it will be rolled forwards to the
/// next available one.
/// `next_possible_charge_date` creation will fail. If the value is not
/// a working day it will be rolled forwards to the next available one.
/// </summary>
[JsonProperty("charge_date")]
public string ChargeDate { get; set; }
Expand Down
10 changes: 4 additions & 6 deletions GoCardless/Services/PaymentService.cs
Original file line number Diff line number Diff line change
Expand Up @@ -244,9 +244,8 @@ public class PaymentCreateRequest : IHasIdempotencyKey
/// A future date on which the payment should be collected. If not
/// specified, the payment will be collected as soon as possible. If the
/// value is before the [mandate](#core-endpoints-mandates)'s
/// `next_possible_charge_date` we will roll it forwards to match. If
/// the value is not a working day it will be rolled forwards to the
/// next available one.
/// `next_possible_charge_date` creation will fail. If the value is not
/// a working day it will be rolled forwards to the next available one.
/// </summary>
[JsonProperty("charge_date")]
public string ChargeDate { get; set; }
Expand Down Expand Up @@ -681,9 +680,8 @@ public class PaymentRetryRequest
/// A future date on which the payment should be collected. If not
/// specified, the payment will be collected as soon as possible. If the
/// value is before the [mandate](#core-endpoints-mandates)'s
/// `next_possible_charge_date` we will roll it forwards to match. If
/// the value is not a working day it will be rolled forwards to the
/// next available one.
/// `next_possible_charge_date` creation will fail. If the value is not
/// a working day it will be rolled forwards to the next available one.
/// </summary>
[JsonProperty("charge_date")]
public string ChargeDate { get; set; }
Expand Down

0 comments on commit 47a3a0a

Please sign in to comment.