public virtual IAsyncEnumerable <Person> ListAutoPagingAsync(string accountId, PersonListOptions options = null, RequestOptions requestOptions = null, CancellationToken cancellationToken = default) { return(this.ListNestedEntitiesAutoPagingAsync(accountId, options, requestOptions, cancellationToken)); }
public virtual Task <StripeList <Person> > ListAsync(string accountId, PersonListOptions options = null, RequestOptions requestOptions = null, CancellationToken cancellationToken = default) { return(this.ListNestedEntitiesAsync(accountId, options, requestOptions, cancellationToken)); }
public virtual IEnumerable <Person> ListAutoPaging(string accountId, PersonListOptions options = null, RequestOptions requestOptions = null) { return(this.ListNestedEntitiesAutoPaging(accountId, options, requestOptions)); }
public virtual StripeList <Person> List(string accountId, PersonListOptions options = null, RequestOptions requestOptions = null) { return(this.ListNestedEntities(accountId, options, requestOptions)); }