Stripe.BankAccountService.Update C# (CSharp) Method

Update() public method

public Update ( string customerId, string bankAccountId, BankAccountUpdateOptions updateOptions, Stripe.StripeRequestOptions requestOptions = null ) : CustomerBankAccount
customerId string
bankAccountId string
updateOptions BankAccountUpdateOptions
requestOptions Stripe.StripeRequestOptions
return CustomerBankAccount
        public virtual CustomerBankAccount Update(string customerId, string bankAccountId, BankAccountUpdateOptions updateOptions, StripeRequestOptions requestOptions = null)
        {
            return Mapper<CustomerBankAccount>.MapFromJson(
                Requestor.PostString(
                    this.ApplyAllParameters(updateOptions, $"{Urls.BaseUrl}/customers/{customerId}/sources/{bankAccountId}"),
                    SetupRequestOptions(requestOptions)
                )
            );
        }