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