I am trying to update Account in Stripe Api
using Stripe.net
library ,using StripeAccountService
and storing it in StripeAccount
class which i made by myself to store the result returned by API :
var accountService = new StripeAccountService("secretKey in string");
StripeRequestOptions option = new StripeRequestOptions();
option.StripeConnectAccountId = "AccountId to update";
StripeAccount x = accountService.Get(option);
x.Email = "Local@local.com";
//Then i do not know how to save changes back to api now.
But StripeAccountService
class has no Update method define. How I can perform update on the Account.
I am using this library. Stripe api does have an update method too here.