public async Task <OutboundVoiceProfile> UpdateAsync(string id, CreateOutboundVoiceProfileOptions updateOptions, RequestOptions requestOptions = null, CancellationToken cancellationToken = default)
 {
     return(await this.UpdateEntityAsync(id, updateOptions, requestOptions, cancellationToken));
 }
 public async Task <OutboundVoiceProfile> CreateAsync(CreateOutboundVoiceProfileOptions createOptions, RequestOptions requestOptions = null, CancellationToken cancellationToken = default)
 {
     return(await this.CreateEntityAsync(createOptions, requestOptions, cancellationToken));
 }
 public OutboundVoiceProfile Update(string id, CreateOutboundVoiceProfileOptions updateOptions, RequestOptions requestOptions = null)
 {
     return(this.UpdateEntity(id, updateOptions, requestOptions));
 }
 public OutboundVoiceProfile Create(CreateOutboundVoiceProfileOptions createOptions, RequestOptions requestOptions = null)
 {
     return(this.CreateEntity(createOptions, requestOptions));
 }