protoncore_android/account-recovery/data/src/main/kotlin/me/proton/core/accountrecovery/data/api/request/ResetPasswordRequest.kt

35 lines
1.2 KiB
Kotlin

/*
* Copyright (c) 2024 Proton Technologies AG
* This file is part of Proton AG and ProtonCore.
*
* ProtonCore is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* ProtonCore is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with ProtonCore. If not, see <https://www.gnu.org/licenses/>.
*/
package me.proton.core.accountrecovery.data.api.request
import kotlinx.serialization.SerialName
import kotlinx.serialization.Serializable
import me.proton.core.key.data.api.request.AuthRequest
import me.proton.core.key.data.api.request.PrivateKeyRequest
@Serializable
public data class ResetPasswordRequest(
@SerialName("KeySalt")
val keySalt: String,
@SerialName("UserKeys")
val userKeys: List<PrivateKeyRequest>? = null,
@SerialName("Auth")
val auth: AuthRequest? = null
)