19.70. PayloadType

The type of payload, based on how the payload was created.

Copy
Copied!
            

enum PayloadType { // The type of the payload is unknown. PAYLOAD_TYPE_UNKNOWN = 0; // The payload was created when a pipeline job was created and is intended to provide storage for its inputs and outputs. PAYLOAD_TYPE_PIPELINE = 1; // The payload is a reusable payload, intended to provide long-term storage and reusable inputs for pipeline jobs. PAYLOAD_TYPE_REUSABLE = 2; }


© Copyright 2018-2020, NVIDIA Corporation. All rights reserved.. Last updated on Feb 1, 2023.