public async Task <TelnyxApiResponse> DialParticipantsAsync(string conferenceId, DialParticipantOptions options = null, RequestOptions requestOptions = null, CancellationToken cancellationToken = default(CancellationToken))
 {
     return(await this.CreateEntityAsync(conferenceId, this.PostPath, options, requestOptions, cancellationToken));
 }
 public TelnyxApiResponse DialParticipants(string conferenceId, DialParticipantOptions options = null, RequestOptions requestOptions = null)
 {
     return(this.CreateEntity(conferenceId, this.PostPath, options, requestOptions));
 }