Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Recurly/Client.cs
Original file line number Diff line number Diff line change
Expand Up @@ -5190,7 +5190,7 @@ public ExternalPaymentPhase GetExternalSubscriptionExternalPaymentPhase(string e
/// <returns>
/// A list of the entitlements granted to an account.
/// </returns>
public Pager<Entitlements> ListEntitlements(string accountId, ListEntitlementsParams optionalParams = null, RequestOptions options = null)
public Pager<Entitlement> ListEntitlements(string accountId, ListEntitlementsParams optionalParams = null, RequestOptions options = null)
{
var urlParams = new Dictionary<string, object> { { "account_id", accountId } };
var queryParams = (optionalParams ?? new ListEntitlementsParams()).ToDictionary();
Expand Down
2 changes: 1 addition & 1 deletion Recurly/IClient.cs
Original file line number Diff line number Diff line change
Expand Up @@ -3342,7 +3342,7 @@ public interface IClient
/// <returns>
/// A list of the entitlements granted to an account.
/// </returns>
Pager<Entitlements> ListEntitlements(string accountId, ListEntitlementsParams optionalParams = null, RequestOptions options = null);
Pager<Entitlement> ListEntitlements(string accountId, ListEntitlementsParams optionalParams = null, RequestOptions options = null);


/// <summary>
Expand Down