public virtual BankAccount Delete(string customerId, string bankAccountId, BankAccountDeleteOptions options = null, RequestOptions requestOptions = null)
 {
     return(this.DeleteNestedEntity(customerId, bankAccountId, options, requestOptions));
 }
 public virtual Task <BankAccount> DeleteAsync(string customerId, string bankAccountId, BankAccountDeleteOptions options = null, RequestOptions requestOptions = null, CancellationToken cancellationToken = default)
 {
     return(this.DeleteNestedEntityAsync(customerId, bankAccountId, options, requestOptions, cancellationToken));
 }
 public virtual BankAccount Delete(string parentId, string id, BankAccountDeleteOptions options = null, RequestOptions requestOptions = null)
 {
     return(this.DeleteNestedEntity(parentId, id, options, requestOptions));
 }