コード例 #1
0
 public async Task <OutboundVoiceProfile> UpdateAsync(string id, CreateOutboundVoiceProfileOptions updateOptions, RequestOptions requestOptions = null, CancellationToken cancellationToken = default)
 {
     return(await this.UpdateEntityAsync(id, updateOptions, requestOptions, cancellationToken));
 }
コード例 #2
0
 public async Task <OutboundVoiceProfile> CreateAsync(CreateOutboundVoiceProfileOptions createOptions, RequestOptions requestOptions = null, CancellationToken cancellationToken = default)
 {
     return(await this.CreateEntityAsync(createOptions, requestOptions, cancellationToken));
 }
コード例 #3
0
 public OutboundVoiceProfile Update(string id, CreateOutboundVoiceProfileOptions updateOptions, RequestOptions requestOptions = null)
 {
     return(this.UpdateEntity(id, updateOptions, requestOptions));
 }
コード例 #4
0
 public OutboundVoiceProfile Create(CreateOutboundVoiceProfileOptions createOptions, RequestOptions requestOptions = null)
 {
     return(this.CreateEntity(createOptions, requestOptions));
 }