Skip to main content

ApplicationVariablesResponse

Type Alias ApplicationVariablesResponse 

Source
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: i64

Business status code (200 indicates success).

§message: String

Human-readable business status message.

§timestamp: i64

Server response timestamp.