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