recurly / recurly-client-dotnet

A .NET API wrapper for Recurly.
https://developers.recurly.com
MIT License
86 stars 80 forks source link

[V2] Add RevRec settings to business entities #817

Closed Smolations closed 9 months ago

Smolations commented 9 months ago

Adds the DefaultLiabilityGlAccountId and DefaultRevenueGlAccountId properties to the BusinessEntity entity for the V2 client.

Examples

These IDs cannot be added to business entities from the client/API, only the UI.

var businessEntity = BusinessEntities.Get(id);

Console.WriteLine("Liability ID: {0}", businessEntity.DefaultLiabilityGlAccountId);
Console.WriteLine("Revenue ID: {0}", businessEntity.DefaultRevenueGlAccountId);
wsethbrown commented 9 months ago

Dev QA +1