Esempio n. 1
0
 public virtual Task <Source> DetachAsync(string parentId, string id, SourceDetachOptions options = null, RequestOptions requestOptions = null, CancellationToken cancellationToken = default)
 {
     return(this.RequestAsync <Source>(HttpMethod.Delete, $"/v1/customers/{parentId}/sources/{id}", null, requestOptions, cancellationToken));
 }
Esempio n. 2
0
 public virtual Source Detach(string parentId, string id, SourceDetachOptions options = null, RequestOptions requestOptions = null)
 {
     return(this.Request <Source>(HttpMethod.Delete, $"/v1/customers/{parentId}/sources/{id}", null, requestOptions));
 }