From 231c44d179b791faaed1465ff309d2ccf9ea4696 Mon Sep 17 00:00:00 2001 From: "gocardless-ci-robot[bot]" <123969075+gocardless-ci-robot[bot]@users.noreply.github.com> Date: Fri, 2 Aug 2024 14:51:16 +0000 Subject: [PATCH] Changes generated by b3fa9b51be91ca54c8456d621688426c15c8acaf This commit was automatically created from gocardless/gocardless-dotnet-template@b3fa9b51be91ca54c8456d621688426c15c8acaf by the `push-files` action. Workflow run: https://github.com/gocardless/gocardless-dotnet-template/actions/runs/10217585454 --- GoCardless/Resources/BillingRequest.cs | 9 +++++++++ GoCardless/Services/BillingRequestService.cs | 9 +++++++++ 2 files changed, 18 insertions(+) diff --git a/GoCardless/Resources/BillingRequest.cs b/GoCardless/Resources/BillingRequest.cs index 6c38fab..af95abd 100644 --- a/GoCardless/Resources/BillingRequest.cs +++ b/GoCardless/Resources/BillingRequest.cs @@ -872,6 +872,15 @@ public class BillingRequestPaymentRequest [JsonProperty("metadata")] public IDictionary Metadata { get; set; } + /// + /// A custom payment reference defined by the merchant. It is only + /// available for payments using the Direct Funds settlement model on + /// the Faster Payments scheme. + /// + /// + [JsonProperty("reference")] + public string Reference { get; set; } + /// /// (Optional) A scheme used for Open Banking payments. Currently /// `faster_payments` is supported in the UK (GBP) and diff --git a/GoCardless/Services/BillingRequestService.cs b/GoCardless/Services/BillingRequestService.cs index 6cd2044..fec7025 100644 --- a/GoCardless/Services/BillingRequestService.cs +++ b/GoCardless/Services/BillingRequestService.cs @@ -835,6 +835,15 @@ public enum BillingRequestFundsSettlement [JsonProperty("metadata")] public IDictionary Metadata { get; set; } + /// + /// A custom payment reference defined by the merchant. It is only + /// available for payments using the Direct Funds settlement model + /// on the Faster Payments scheme. + /// + /// + [JsonProperty("reference")] + public string Reference { get; set; } + /// /// (Optional) A scheme used for Open Banking payments. Currently /// `faster_payments` is supported in the UK (GBP) and