internal static InboundConfig ToInboundConfig(CfInboundConfig source)
 {
     if (source == null)
     {
         return null;
     }
     InboundConfig item = null;
     if (source.GetType() == typeof(CfIvrInboundConfig))
     {
         item = IvrInboundConfigMapper.ToIvrInboundConfig((CfIvrInboundConfig)source);
     }
     else if (source.GetType() == typeof(CfCallTrackingConfig))
     {
         item = CallTrackingConfigMapper.ToCallTrackingConfig((CfCallTrackingConfig)source);
     }
     return item;
 }
Exemplo n.º 2
0
 public CfNumberConfigurationInboundCallConfiguration(CfInboundConfig item)
 {
     Item = item;
 }
Exemplo n.º 3
0
 public CfNumberConfigurationInboundCallConfiguration(CfInboundConfig item)
 {
     Item = item;
 }