Smartswitch
CdrFilter.ice
Go to the documentation of this file.
1 #pragma once
2 
3 [["python:pkgdir:Smartswitch/Telephony"]]
4 
5 module Smartswitch
6 {
7  module Telephony
8  {
14  struct CdrFilter
15  {
16  string from;
17  string to;
18  string calleeIdPattern;
19  };
20  };
21 };
string from
If not empty, selects CDR which startTime is greater or equal to from.
Definition: CdrFilter.ice:16
string calleeIdPattern
If not empty, selects CDR which calleeId matches specified pattern.
Definition: CdrFilter.ice:18
This struct allows to apply a filter when fetching CDR.
Definition: CdrFilter.ice:14
Definition: AccessException.ice:7
string to
If not empty, selects CDR which startTime is less or equal to to.
Definition: CdrFilter.ice:17