Skip to main content

Mountain/Air/AirServiceTypesStub/
AuthenticationRequest.rs

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