mirror of
https://github.com/bitwarden/ios.git
synced 2026-04-13 01:13:26 -05:00
18 lines
407 B
Swift
18 lines
407 B
Swift
import Foundation
|
|
import Networking
|
|
|
|
// MARK: - SingleSignOnDetailsRequestModel
|
|
|
|
/// API request model for getting the single sign on details for a user.
|
|
///
|
|
struct SingleSignOnDetailsRequestModel: JSONRequestBody {
|
|
// MARK: Static Properties
|
|
|
|
static let encoder = JSONEncoder()
|
|
|
|
// MARK: Properties
|
|
|
|
/// The email of the user to check for single sign on details of.
|
|
let email: String
|
|
}
|