1#![allow(non_snake_case)] 2 3//! `AuthenticateUser` request DTO. 4 5#[derive(Debug, Clone)] 6pub struct Struct { 7 pub request_id:String, 8 9 pub provider:String, 10 11 pub credentials:serde_json::Value, 12}