Beispiel #1
0
 public virtual Account Get(string accountId, AccountGetOptions options = null, RequestOptions requestOptions = null)
 {
     return(this.GetEntity(accountId, options, requestOptions));
 }
Beispiel #2
0
 public virtual Task <Account> GetAsync(string accountId, AccountGetOptions options = null, RequestOptions requestOptions = null, CancellationToken cancellationToken = default(CancellationToken))
 {
     return(this.GetEntityAsync(accountId, options, requestOptions, cancellationToken));
 }
Beispiel #3
0
 public virtual Task <Account> Get(AccountGetOptions options = null, RequestOptions requestOptions = null, CancellationToken cancellationToken = default)
 {
     return(GetEntity(options, requestOptions, cancellationToken));
 }