public async Task <TelnyxApiResponse> SpeakAsync(string id, ConferenceSpeakOptions speakOptions, RequestOptions requestOptions = null, CancellationToken ct = default)
 {
     return(await this.CreateEntityAsync(id, this.PostPath, speakOptions, requestOptions, ct));
 }
 public TelnyxApiResponse Speak(string id, ConferenceSpeakOptions speakOptions, RequestOptions requestOptions = null)
 {
     return(this.CreateEntity(id, this.PostPath, speakOptions, requestOptions));
 }