Subversion Repositories SmartDukaan

Rev

Rev 37010 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 37010 Rev 37022
Line 24... Line 24...
24
    private long uniqueRecordingCalls;
24
    private long uniqueRecordingCalls;
25
    // Unique customer numbers this RBM attempted today.
25
    // Unique customer numbers this RBM attempted today.
26
    // Excludes numbers where every attempt was "No Answer" — unless the number was
26
    // Excludes numbers where every attempt was "No Answer" — unless the number was
27
    // attempted 3+ times, in which case persistence earns 1 credit.
27
    // attempted 3+ times, in which case persistence earns 1 credit.
28
    private long triedUniqueCalls;
28
    private long triedUniqueCalls;
-
 
29
    // Same rule as triedUniqueCalls but scoped to today's Calling Target partners only.
-
 
30
    // Off-target activity is excluded so this always sits within Calling Target.
-
 
31
    private long tgtCalls;
29
 
32
 
30
    public int getAuthId() {
33
    public int getAuthId() {
31
        return authId;
34
        return authId;
32
    }
35
    }
33
 
36
 
Line 200... Line 203...
200
    }
203
    }
201
 
204
 
202
    public void setTriedUniqueCalls(long triedUniqueCalls) {
205
    public void setTriedUniqueCalls(long triedUniqueCalls) {
203
        this.triedUniqueCalls = triedUniqueCalls;
206
        this.triedUniqueCalls = triedUniqueCalls;
204
    }
207
    }
-
 
208
 
-
 
209
    public long getTgtCalls() {
-
 
210
        return tgtCalls;
-
 
211
    }
-
 
212
 
-
 
213
    public void setTgtCalls(long tgtCalls) {
-
 
214
        this.tgtCalls = tgtCalls;
-
 
215
    }
205
}
216
}