pub type ApplicationFileUploadResponse = ApplicationEnvelope<ApplicationFileUploadData>;Expand description
Response from the application file-upload endpoint.
Aliased Type§
pub struct ApplicationFileUploadResponse {
pub data: ApplicationFileUploadData,
pub code: i64,
pub message: String,
pub timestamp: i64,
}Fields§
§data: ApplicationFileUploadDataEndpoint-specific response payload.
code: i64Business status code (200 indicates success).
message: StringHuman-readable business status message.
timestamp: i64Server response timestamp.