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 Adjustments #822

Closed Smolations closed 8 months ago

Smolations commented 8 months ago

Adds the following properties to the Adjustment entity for the V2 client:

Examples

//** create an add-on with default (or non-default, by assignment) RevRec settings
var adjustment = new Adjustment();
// ...
adjustment.Create();
Console.WriteLine("Liability ID: {0}", adjustment.LiabilityGlAccountId); // => ""
Console.WriteLine("Revenue ID: {0}", adjustment.RevenueGlAccountId);     // => ""
Console.WriteLine("POB ID: {0}", adjustment.PerformanceObligationId);    // => "abc" (default POB)
8eth commented 8 months ago

DevQA+1