public async Task <TelnyxApiResponse> StopAsync(string id, GatherStopOptions options, RequestOptions requestOptions = null, CancellationToken ct = default)
 {
     return(await this.CreateEntityAsync(id, this.PostPath, options, requestOptions, ct));
 }
 public TelnyxApiResponse Stop(string id, GatherStopOptions options, RequestOptions requestOptions = null)
 {
     return(this.CreateEntity(id, this.PostPath, options, requestOptions));
 }