diff --git a/GoCardless/Resources/Event.cs b/GoCardless/Resources/Event.cs
index bba52fc..8d8ca5b 100644
--- a/GoCardless/Resources/Event.cs
+++ b/GoCardless/Resources/Event.cs
@@ -72,7 +72,7 @@ public class Event
///
/// - `payments`
/// - `mandates`
- /// - `payer_authorisations`
`payer_authorisations`
/// - `payouts`
/// - `refunds`
/// - `subscriptions`
@@ -425,7 +425,7 @@ public class EventLinks
///
/// - `payments`
/// - `mandates`
- /// - `payer_authorisations`
`payer_authorisations`
/// - `payouts`
/// - `refunds`
/// - `subscriptions`
diff --git a/GoCardless/Resources/Payment.cs b/GoCardless/Resources/Payment.cs
index 15ac649..9b1ccca 100644
--- a/GoCardless/Resources/Payment.cs
+++ b/GoCardless/Resources/Payment.cs
@@ -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.
///
[JsonProperty("charge_date")]
public string ChargeDate { get; set; }
diff --git a/GoCardless/Resources/PayoutItem.cs b/GoCardless/Resources/PayoutItem.cs
index c5ea380..a99e33e 100644
--- a/GoCardless/Resources/PayoutItem.cs
+++ b/GoCardless/Resources/PayoutItem.cs
@@ -119,6 +119,12 @@ public class PayoutItemLinks
///
[JsonProperty("payment")]
public string Payment { get; set; }
+
+ ///
+ /// Unique identifier, beginning with "RF".
+ ///
+ [JsonProperty("refund")]
+ public string Refund { get; set; }
}
///
diff --git a/GoCardless/Services/MandateImportEntryService.cs b/GoCardless/Services/MandateImportEntryService.cs
index 9e8a030..756e150 100644
--- a/GoCardless/Services/MandateImportEntryService.cs
+++ b/GoCardless/Services/MandateImportEntryService.cs
@@ -263,7 +263,7 @@ public class MandateImportEntryCustomer
///
/// The first line of the customer's address. Required if mandate
- /// import scheme is `bacs`.
+ /// import scheme is either `bacs` or `sepa`.
///
///
[JsonProperty("address_line1")]
@@ -357,7 +357,7 @@ public class MandateImportEntryCustomer
///
/// The customer's postal code. Required if mandate import scheme is
- /// `bacs`.
+ /// either `bacs` or `sepa`.
///
///
[JsonProperty("postal_code")]
diff --git a/GoCardless/Services/PaymentService.cs b/GoCardless/Services/PaymentService.cs
index 80e0c4e..1bdffeb 100644
--- a/GoCardless/Services/PaymentService.cs
+++ b/GoCardless/Services/PaymentService.cs
@@ -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.
///
[JsonProperty("charge_date")]
public string ChargeDate { get; set; }
@@ -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.
///
[JsonProperty("charge_date")]
public string ChargeDate { get; set; }