pub struct RecoveryConfigurationICloudResponse {
pub api_token: String,
pub container_identifier: String,
pub environment: String,
}Expand description
The response containing the iCloud recovery configuration.
JSON schema
{
"title": "RecoveryConfigurationICloudResponse",
"description": "The response containing the iCloud recovery
configuration.",
"type": "object",
"required": [
"api_token",
"container_identifier",
"environment"
],
"properties": {
"api_token": {
"type": "string"
},
"container_identifier": {
"type": "string"
},
"environment": {
"type": "string"
}
},
"x-stainless-model":
"embedded_wallets.recovery_configuration_icloud_response"
}Fields§
§api_token: String§container_identifier: String§environment: StringTrait Implementations§
Source§impl Clone for RecoveryConfigurationICloudResponse
impl Clone for RecoveryConfigurationICloudResponse
Source§fn clone(&self) -> RecoveryConfigurationICloudResponse
fn clone(&self) -> RecoveryConfigurationICloudResponse
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<'de> Deserialize<'de> for RecoveryConfigurationICloudResponse
impl<'de> Deserialize<'de> for RecoveryConfigurationICloudResponse
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<&RecoveryConfigurationICloudResponse> for RecoveryConfigurationICloudResponse
impl From<&RecoveryConfigurationICloudResponse> for RecoveryConfigurationICloudResponse
Source§fn from(value: &RecoveryConfigurationICloudResponse) -> Self
fn from(value: &RecoveryConfigurationICloudResponse) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for RecoveryConfigurationICloudResponse
impl RefUnwindSafe for RecoveryConfigurationICloudResponse
impl Send for RecoveryConfigurationICloudResponse
impl Sync for RecoveryConfigurationICloudResponse
impl Unpin for RecoveryConfigurationICloudResponse
impl UnsafeUnpin for RecoveryConfigurationICloudResponse
impl UnwindSafe for RecoveryConfigurationICloudResponse
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