コード例 #1
0
 public virtual Person Get(string accountId, string personId, PersonGetOptions options = null, RequestOptions requestOptions = null)
 {
     return(this.GetNestedEntity(accountId, personId, options, requestOptions));
 }
コード例 #2
0
 public virtual Task <Person> GetAsync(string accountId, string personId, PersonGetOptions options = null, RequestOptions requestOptions = null, CancellationToken cancellationToken = default)
 {
     return(this.GetNestedEntityAsync(accountId, personId, options, requestOptions, cancellationToken));
 }
コード例 #3
0
 public virtual Person Get(string parentId, string id, PersonGetOptions options = null, RequestOptions requestOptions = null)
 {
     return(this.GetNestedEntity(parentId, id, options, requestOptions));
 }