pub struct QueryAssetsResponse {
pub done: Option<bool>,
pub error: Option<Status>,
pub job_reference: Option<String>,
pub output_config: Option<QueryAssetsOutputConfig>,
pub query_result: Option<QueryResult>,
}Expand description
QueryAssets response.
§Activities
This type is used in activities, which are methods you may call on this type or where this type is involved in. The list links the activity name, along with information about where it is used (one of request and response).
- query assets (response)
Fields§
§done: Option<bool>The query response, which can be either an error or a valid response. If done == false and the query result is being saved in an output, the output_config field will be set. If done == true, exactly one of error, query_result or output_config will be set. [done] is unset unless the QueryAssetsResponse contains a [QueryAssetsResponse.job_reference].
error: Option<Status>Error status.
job_reference: Option<String>Reference to a query job.
output_config: Option<QueryAssetsOutputConfig>Output configuration, which indicates that instead of being returned in an API response on the fly, the query result will be saved in a specific output.
query_result: Option<QueryResult>Result of the query.
Trait Implementations§
Source§impl Clone for QueryAssetsResponse
impl Clone for QueryAssetsResponse
Source§fn clone(&self) -> QueryAssetsResponse
fn clone(&self) -> QueryAssetsResponse
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more