pub struct RecoveryKeyMaterialResponse {
pub file_id: String,
pub icloud_record_name: String,
pub recovery_code: String,
pub recovery_key: String,
pub recovery_key_derivation_salt: String,
pub recovery_type: RecoveryType,
}Expand description
The response containing the recovery key material.
JSON schema
{
"title": "RecoveryKeyMaterialResponse",
"description": "The response containing the recovery key material.",
"type": "object",
"required": [
"file_id",
"icloud_record_name",
"recovery_code",
"recovery_key",
"recovery_key_derivation_salt",
"recovery_type"
],
"properties": {
"file_id": {
"type": "string"
},
"icloud_record_name": {
"type": "string"
},
"recovery_code": {
"type": "string"
},
"recovery_key": {
"type": "string"
},
"recovery_key_derivation_salt": {
"type": "string"
},
"recovery_type": {
"$ref": "#/components/schemas/RecoveryType"
}
},
"x-stainless-model": "embedded_wallets.recovery_key_material_response"
}Fields§
§file_id: String§icloud_record_name: String§recovery_code: String§recovery_key: String§recovery_key_derivation_salt: String§recovery_type: RecoveryTypeTrait Implementations§
Source§impl Clone for RecoveryKeyMaterialResponse
impl Clone for RecoveryKeyMaterialResponse
Source§fn clone(&self) -> RecoveryKeyMaterialResponse
fn clone(&self) -> RecoveryKeyMaterialResponse
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for RecoveryKeyMaterialResponse
impl Debug for RecoveryKeyMaterialResponse
Source§impl<'de> Deserialize<'de> for RecoveryKeyMaterialResponse
impl<'de> Deserialize<'de> for RecoveryKeyMaterialResponse
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl From<&RecoveryKeyMaterialResponse> for RecoveryKeyMaterialResponse
impl From<&RecoveryKeyMaterialResponse> for RecoveryKeyMaterialResponse
Source§fn from(value: &RecoveryKeyMaterialResponse) -> Self
fn from(value: &RecoveryKeyMaterialResponse) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for RecoveryKeyMaterialResponse
impl RefUnwindSafe for RecoveryKeyMaterialResponse
impl Send for RecoveryKeyMaterialResponse
impl Sync for RecoveryKeyMaterialResponse
impl Unpin for RecoveryKeyMaterialResponse
impl UnsafeUnpin for RecoveryKeyMaterialResponse
impl UnwindSafe for RecoveryKeyMaterialResponse
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more