Inheritance: CfInboundConfig
コード例 #1
0
 public IvrInboundConfig(CfIvrInboundConfig source)
 {
     if (source.Id.HasValue)
     {
         id = source.Id.Value;
         idSpecified = true;
     }
     DialplanXml = source.DialplanXml;
 }
コード例 #2
0
 internal static IvrInboundConfig ToIvrInboundConfig(CfIvrInboundConfig source)
 {
     return source == null ? null : new IvrInboundConfig(source);
 }