From 6776258f604d1cc3d9da7a35eae86f8e8cd5084f Mon Sep 17 00:00:00 2001 From: John Weber Date: Tue, 21 Jan 2025 22:30:38 -0700 Subject: [PATCH] #853 - Fixing the ListEntitlements return type --- Recurly/Client.cs | 2 +- Recurly/IClient.cs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Recurly/Client.cs b/Recurly/Client.cs index ded6ea82..c84e8552 100644 --- a/Recurly/Client.cs +++ b/Recurly/Client.cs @@ -5190,7 +5190,7 @@ public ExternalPaymentPhase GetExternalSubscriptionExternalPaymentPhase(string e /// /// A list of the entitlements granted to an account. /// - public Pager ListEntitlements(string accountId, ListEntitlementsParams optionalParams = null, RequestOptions options = null) + public Pager ListEntitlements(string accountId, ListEntitlementsParams optionalParams = null, RequestOptions options = null) { var urlParams = new Dictionary { { "account_id", accountId } }; var queryParams = (optionalParams ?? new ListEntitlementsParams()).ToDictionary(); diff --git a/Recurly/IClient.cs b/Recurly/IClient.cs index 9111c566..a9d5976f 100644 --- a/Recurly/IClient.cs +++ b/Recurly/IClient.cs @@ -3342,7 +3342,7 @@ public interface IClient /// /// A list of the entitlements granted to an account. /// - Pager ListEntitlements(string accountId, ListEntitlementsParams optionalParams = null, RequestOptions options = null); + Pager ListEntitlements(string accountId, ListEntitlementsParams optionalParams = null, RequestOptions options = null); ///