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