1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
/*
 * MailSlurp API
 *
 * MailSlurp is an API for sending and receiving emails from dynamically allocated email addresses. It's designed for developers and QA teams to test applications, process inbound emails, send templated notifications, attachments, and more.   ## Resources - [Homepage](https://www.mailslurp.com) - Get an [API KEY](https://app.mailslurp.com/sign-up/) - Generated [SDK Clients](https://www.mailslurp.com/docs/) - [Examples](https://github.com/mailslurp/examples) repository 
 *
 * The version of the OpenAPI document: 6.5.2
 * 
 * Generated by: https://openapi-generator.tech
 */

use std::rc::Rc;
use std::borrow::Borrow;
#[allow(unused_imports)]
use std::option::Option;

use hyper;
use serde_json;
use futures::Future;

use super::{Error, configuration};
use super::request as __internal_request;

pub struct FormControllerApiClient<C: hyper::client::Connect> {
    configuration: Rc<configuration::Configuration<C>>,
}

impl<C: hyper::client::Connect> FormControllerApiClient<C> {
    pub fn new(configuration: Rc<configuration::Configuration<C>>) -> FormControllerApiClient<C> {
        FormControllerApiClient {
            configuration,
        }
    }
}

pub trait FormControllerApi {
    fn submit_form(&self, _email_address: Option<&str>, _redirect_to: Option<&str>, _spam_check: Option<&str>, _subject: Option<&str>, _success_message: Option<&str>, _to: Option<&str>, _to_alias: Option<&str>, other_parameters: Option<&str>) -> Box<dyn Future<Item = String, Error = Error<serde_json::Value>>>;
}

impl<C: hyper::client::Connect>FormControllerApi for FormControllerApiClient<C> {
    fn submit_form(&self, _email_address: Option<&str>, _redirect_to: Option<&str>, _spam_check: Option<&str>, _subject: Option<&str>, _success_message: Option<&str>, _to: Option<&str>, _to_alias: Option<&str>, other_parameters: Option<&str>) -> Box<dyn Future<Item = String, Error = Error<serde_json::Value>>> {
        let mut req = __internal_request::Request::new(hyper::Method::Post, "/forms".to_string())
            .with_auth(__internal_request::Auth::ApiKey(__internal_request::ApiKey{
                in_header: true,
                in_query: false,
                param_name: "x-api-key".to_owned(),
            }))
        ;
        if let Some(param_value) = _email_address {
            req = req.with_form_param("_emailAddress".to_string(), param_value.to_string());
        }
        if let Some(param_value) = _redirect_to {
            req = req.with_form_param("_redirectTo".to_string(), param_value.to_string());
        }
        if let Some(param_value) = _spam_check {
            req = req.with_form_param("_spamCheck".to_string(), param_value.to_string());
        }
        if let Some(param_value) = _subject {
            req = req.with_form_param("_subject".to_string(), param_value.to_string());
        }
        if let Some(param_value) = _success_message {
            req = req.with_form_param("_successMessage".to_string(), param_value.to_string());
        }
        if let Some(param_value) = _to {
            req = req.with_form_param("_to".to_string(), param_value.to_string());
        }
        if let Some(param_value) = _to_alias {
            req = req.with_form_param("_toAlias".to_string(), param_value.to_string());
        }
        if let Some(param_value) = other_parameters {
            req = req.with_form_param("otherParameters".to_string(), param_value.to_string());
        }

        req.execute(self.configuration.borrow())
    }

}