pub trait LineModuleAttachApi: Send + Sync {
// Required method
fn attach_module(
&self,
grant_type: &str,
code: &str,
redirect_uri: &str,
code_verifier: Option<&str>,
client_id: Option<&str>,
client_secret: Option<&str>,
region: Option<&str>,
basic_search_id: Option<&str>,
scope: Option<&str>,
brand_type: Option<&str>,
) -> Pin<Box<dyn Future<Output = Result<AttachModuleResponse, Error>> + Send>>;
}