ferrisgram/helpers/
response_parameters.rs

1// WARNING: THIS CODE IS AUTOGENERATED.
2// DO NOT EDIT!!!
3
4#![allow(clippy::too_many_arguments, clippy::new_without_default)]
5use crate::types::ResponseParameters;
6
7impl ResponseParameters {
8    /// This function creates an empty struct for the object ResponseParameters.
9    pub fn new() -> Self {
10        Self {
11            migrate_to_chat_id: None,
12            retry_after: None,
13        }
14    }
15}