pub struct SignEvmTypedDataWithEndUserAccountBody {
pub address: SignEvmTypedDataWithEndUserAccountBodyAddress,
pub typed_data: Eip712Message,
pub wallet_secret_id: Option<SignEvmTypedDataWithEndUserAccountBodyWalletSecretId>,
}Expand description
SignEvmTypedDataWithEndUserAccountBody
JSON schema
{
"type": "object",
"required": [
"address",
"typedData"
],
"properties": {
"address": {
"description": "The 0x-prefixed address of the EVM account belonging to the end user.",
"examples": [
"0x742d35Cc6634C0532925a3b844Bc454e4438f44e"
],
"type": "string",
"pattern": "^0x[0-9a-fA-F]{40}$"
},
"typedData": {
"$ref": "#/components/schemas/EIP712Message"
},
"walletSecretId": {
"description": "Required when not using delegated signing. The ID of the Temporary Wallet Secret that was used to sign the X-Wallet-Auth Header.",
"examples": [
"e051beeb-7163-4527-a5b6-35e301529ff2"
],
"type": "string",
"pattern": "^[a-zA-Z0-9-]{1,100}$"
}
}
}Fields§
§address: SignEvmTypedDataWithEndUserAccountBodyAddressThe 0x-prefixed address of the EVM account belonging to the end user.
typed_data: Eip712Message§wallet_secret_id: Option<SignEvmTypedDataWithEndUserAccountBodyWalletSecretId>Required when not using delegated signing. The ID of the Temporary Wallet Secret that was used to sign the X-Wallet-Auth Header.
Implementations§
Trait Implementations§
Source§impl Clone for SignEvmTypedDataWithEndUserAccountBody
impl Clone for SignEvmTypedDataWithEndUserAccountBody
Source§fn clone(&self) -> SignEvmTypedDataWithEndUserAccountBody
fn clone(&self) -> SignEvmTypedDataWithEndUserAccountBody
Returns a duplicate of the value. Read more
1.0.0 · 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 SignEvmTypedDataWithEndUserAccountBody
impl<'de> Deserialize<'de> for SignEvmTypedDataWithEndUserAccountBody
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<&SignEvmTypedDataWithEndUserAccountBody> for SignEvmTypedDataWithEndUserAccountBody
impl From<&SignEvmTypedDataWithEndUserAccountBody> for SignEvmTypedDataWithEndUserAccountBody
Source§fn from(value: &SignEvmTypedDataWithEndUserAccountBody) -> Self
fn from(value: &SignEvmTypedDataWithEndUserAccountBody) -> Self
Converts to this type from the input type.
Source§impl From<SignEvmTypedDataWithEndUserAccountBody> for SignEvmTypedDataWithEndUserAccountBody
impl From<SignEvmTypedDataWithEndUserAccountBody> for SignEvmTypedDataWithEndUserAccountBody
Source§fn from(value: SignEvmTypedDataWithEndUserAccountBody) -> Self
fn from(value: SignEvmTypedDataWithEndUserAccountBody) -> Self
Converts to this type from the input type.
Source§impl TryFrom<SignEvmTypedDataWithEndUserAccountBody> for SignEvmTypedDataWithEndUserAccountBody
impl TryFrom<SignEvmTypedDataWithEndUserAccountBody> for SignEvmTypedDataWithEndUserAccountBody
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Source§fn try_from(
value: SignEvmTypedDataWithEndUserAccountBody,
) -> Result<Self, ConversionError>
fn try_from( value: SignEvmTypedDataWithEndUserAccountBody, ) -> Result<Self, ConversionError>
Performs the conversion.
Auto Trait Implementations§
impl Freeze for SignEvmTypedDataWithEndUserAccountBody
impl RefUnwindSafe for SignEvmTypedDataWithEndUserAccountBody
impl Send for SignEvmTypedDataWithEndUserAccountBody
impl Sync for SignEvmTypedDataWithEndUserAccountBody
impl Unpin for SignEvmTypedDataWithEndUserAccountBody
impl UnsafeUnpin for SignEvmTypedDataWithEndUserAccountBody
impl UnwindSafe for SignEvmTypedDataWithEndUserAccountBody
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