public IvrInboundConfig(CfIvrInboundConfig source) { if (source.Id.HasValue) { id = source.Id.Value; idSpecified = true; } DialplanXml = source.DialplanXml; }
internal static IvrInboundConfig ToIvrInboundConfig(CfIvrInboundConfig source) { return source == null ? null : new IvrInboundConfig(source); }