Esempio n. 1
0
 public CfNumberConfiguration(CfNumberFeature?callFeature, CfNumberFeature?textFeature, CfInboundType?inboundCallConfigurationType,
                              CfNumberConfigurationInboundCallConfiguration inboundCallConfiguration)
 {
     CallFeature = callFeature;
     TextFeature = textFeature;
     InboundCallConfigurationType = inboundCallConfigurationType;
     InboundCallConfiguration     = inboundCallConfiguration;
 }
 public CfNumberConfiguration(CfNumberFeature? callFeature, CfNumberFeature? textFeature, CfInboundType? inboundCallConfigurationType,
     CfNumberConfigurationInboundCallConfiguration inboundCallConfiguration)
 {
     CallFeature = callFeature;
     TextFeature = textFeature;
     InboundCallConfigurationType = inboundCallConfigurationType;
     InboundCallConfiguration = inboundCallConfiguration;
 }
 public NumberConfigurationInboundCallConfiguration(CfNumberConfigurationInboundCallConfiguration source)
 {
     Item = InboundConfigMapper.ToInboundConfig(source.Item);
 }
 internal static NumberConfigurationInboundCallConfiguration ToNumberConfigurationInboundCallConfiguration(
     CfNumberConfigurationInboundCallConfiguration source)
 {
     return source == null ? null : new NumberConfigurationInboundCallConfiguration(source);
 }