Пример #1
0
 public CfText(string fromNumber, CfToNumber toNumber, CfActionState state, long batchId, long broadcastId, long contactId,
               bool inbound, DateTime created, DateTime modified, CfResult finalResult, CfLabel[] label, long id, string message, CfTextRecord[] textRecord)
     : base(fromNumber, toNumber, state, batchId, broadcastId, contactId, inbound, created, modified, finalResult, label, id)
 {
     Message    = message;
     TextRecord = textRecord;
 }
 public CfActionQuery(long maxResult, long firstResult, long? broadcastId, long? batchId, CfActionState[] state, CfResult[] result,
     bool? inbound, DateTime? intervalBegin, DateTime? intervalEnd, string fromNumber, string toNumber, string labelName)
     : base(maxResult, firstResult)
 {
     BroadcastId = broadcastId;
     BatchId = batchId;
     State = state;
     Result = result;
     Inbound = inbound;
     IntervalBegin = intervalBegin;
     IntervalEnd = intervalEnd;
     FromNumber = fromNumber;
     ToNumber = toNumber;
     LabelName = labelName;
 }
Пример #3
0
 public CfAction(string fromNumber, CfToNumber toNumber, CfActionState state, long?batchId, long?broadcastId, long contactId,
                 bool inbound, DateTime created, DateTime modified, CfResult finalResult, CfLabel[] label, long id)
 {
     FromNumber  = fromNumber;
     ToNumber    = toNumber;
     State       = state;
     BatchId     = batchId;
     BroadcastId = broadcastId;
     ContactId   = contactId;
     Inbound     = inbound;
     Created     = created;
     Modified    = modified;
     FinalResult = finalResult;
     Label       = label;
     Id          = id;
 }
Пример #4
0
 public CfCall(string fromNumber, CfToNumber toNumber, CfActionState state, long batchId, long broadcastId, long contactId, bool inbound,
     DateTime created, DateTime modified, CfResult finalResult, CfLabel[] label, long id, CfCallRecord[] callRecord)
     : base(fromNumber, toNumber, state, batchId, broadcastId, contactId, inbound, created, modified, finalResult, label, id)
 {
     CallRecord = callRecord;
 }
Пример #5
0
 public CfAction(string fromNumber, CfToNumber toNumber, CfActionState state, long? batchId, long? broadcastId, long contactId,
     bool inbound, DateTime created, DateTime modified, CfResult finalResult, CfLabel[] label, long id)
 {
     FromNumber = fromNumber;
     ToNumber = toNumber;
     State = state;
     BatchId = batchId;
     BroadcastId = broadcastId;
     ContactId = contactId;
     Inbound = inbound;
     Created = created;
     Modified = modified;
     FinalResult = finalResult;
     Label = label;
     Id = id;
 }