17.70. PayloadType¶
The type of payload, based on how the payload was created.
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; }