/*
* opensearch-client
*
* Rust Client for OpenSearch
*
* The version of the OpenAPI document: 3.1.0
* Contact: alberto.paro@gmail.com
* Generated by Paro OpenAPI Generator
*/useserde::{Deserialize, Serialize};/// Restore
/// Comma-separated list of index IDs
#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize)]pubstructRestore{#[serde(rename ="indices")]pubindices:Vec<String>,
}implRestore{/// Comma-separated list of index IDs
pubfnnew(indices:Vec<String>)-> Restore{
Restore {
indices,}}}