// Copyright 2023 Salesforce, Inc. All rights reserved.
// use crate::bindings::value::ValueBinding;
/// Represents top-level variables.
pubenumInput<'a> {/// Represents the `vars` variable.
Vars(&'astr),/// Represents the `payload` variable.
Payload(Format),/// Represents the `attributes` variable.
Attributes,/// Represents the `authentication` variable.
Authentication,}/// Represents the format for the `payload` variable.
#[derive(Debug, Clone)]pubenumFormat{/// Represents JSON format.
Json,/// Represents plain text format.
PlainText,}