useserde::Serialize;/// Options for get statement data download url request
#[derive(Debug, Serialize, Clone)]pubstructGetStatementOptions{file_key: String,
}implGetStatementOptions{/// Create a new `GetStatementDataDownloadUrlOptions`
#[inline]pubfnnew(file_key: impl Into<String>)->Self{Self{
file_key: file_key.into(),}}}