Skip to main content
Skip table of contents

13.1 File Enums


JAVA

    public enum TrSvcFileStatus : int
    {
        None = -1,
        All = 0,
        Pending = 1,
        InProgress = 2,
        Passed = 3,
        Failed = 4,
        MixedResult = 5,
        PartialDelivery = 6,
        Delivered = 7,
        NoDeliveryTargets = 8,
        ReplayRequest = 9,
        ReplayRequestFailed = 10,
        Quarantined = 11
    }

    public enum TrSvcFileProcessingType : int
    {
        None = -1,
        All = 0,
        Flow = 1,
        Delivery = 2
    }


 

JavaScript errors detected

Please note, these errors can depend on your browser setup.

If this problem persists, please contact our support.