SIPInboundRoutingRuleResponse constructor

SIPInboundRoutingRuleResponse({
  1. SIPCallConfigsResponse? callConfigs,
  2. List<String> calledNumbers = const [],
  3. SIPCallerConfigsResponse? callerConfigs,
  4. List<String> callerNumbers = const [],
  5. required DateTime createdAt,
  6. SIPDirectRoutingRuleCallConfigsResponse? directRoutingConfigs,
  7. required String duration,
  8. required String id,
  9. required String name,
  10. SIPPinProtectionConfigsResponse? pinProtectionConfigs,
  11. SIPInboundRoutingRulePinConfigsResponse? pinRoutingConfigs,
  12. List<String> trunkIds = const [],
  13. required DateTime updatedAt,
})

Returns a new SIPInboundRoutingRuleResponse instance.

Implementation

SIPInboundRoutingRuleResponse({
  this.callConfigs,
  this.calledNumbers = const [],
  this.callerConfigs,
  this.callerNumbers = const [],
  required this.createdAt,
  this.directRoutingConfigs,
  required this.duration,
  required this.id,
  required this.name,
  this.pinProtectionConfigs,
  this.pinRoutingConfigs,
  this.trunkIds = const [],
  required this.updatedAt,
});