Exemple #1
0
        }         // HasBucket

        public static bool HasEquifaxData(this Reply reply)
        {
            return(reply.Exists() && (reply.Equifax != null) && !string.IsNullOrWhiteSpace(reply.Equifax.RawResponse));
        }         // EquifaxData
Exemple #2
0
        }         // EquifaxData

        public static bool HasEtl(this Reply reply)
        {
            return(reply.Exists() && (reply.Etl != null));
        } // HasEtl
Exemple #3
0
        }         // HasModels

        public static bool HasBucket(this Reply reply)
        {
            return(reply.HasDecision() && (reply.Inference.Decision.Bucket != null));
        }         // HasBucket
Exemple #4
0
        }         // HasDecision

        public static bool HasModels(this Reply reply)
        {
            return(reply.HasDecision() && (reply.Inference.Decision.Models != null));
        }         // HasModels
Exemple #5
0
        }         // HasInference

        public static bool HasDecision(this Reply reply)
        {
            return(reply.HasInference() && (reply.Inference.Decision != null));
        }         // HasDecision
Exemple #6
0
        }         // Exists

        public static bool HasInference(this Reply reply)
        {
            return(reply.Exists() && (reply.Inference != null));
        }         // HasInference
Exemple #7
0
 public static bool Exists(this Reply reply)
 {
     return(reply != null);
 }         // Exists