Files
ios/BitwardenShared/Core/Auth/Models/Request/SingleSignOnDetailsRequestModel.swift
2024-08-21 10:06:43 -05:00

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
}