pub type ApplicationVariablesResponse = ApplicationEnvelope<Vec<ApplicationVariable>>;Expand description
Response containing an application’s input variables.
Aliased Type§
pub struct ApplicationVariablesResponse {
pub data: Vec<ApplicationVariable>,
pub code: i64,
pub message: String,
pub timestamp: i64,
}Fields§
§data: Vec<ApplicationVariable>Endpoint-specific response payload.
code: i64Business status code (200 indicates success).
message: StringHuman-readable business status message.
timestamp: i64Server response timestamp.