pub struct PatchUsersCustomMetadata {
pub custom_metadata: CustomMetadata,
}Expand description
The payload for partially updating custom metadata on a user.
JSON schema
{
"title": "PatchUsersCustomMetadata",
"description": "The payload for partially updating custom metadata on a
user.",
"type": "object",
"required": [
"custom_metadata"
],
"properties": {
"custom_metadata": {
"$ref": "#/components/schemas/CustomMetadata"
}
},
"x-stainless-model": "users.patch_users_custom_metadata"
}Fields§
§custom_metadata: CustomMetadataTrait Implementations§
Source§impl Clone for PatchUsersCustomMetadata
impl Clone for PatchUsersCustomMetadata
Source§fn clone(&self) -> PatchUsersCustomMetadata
fn clone(&self) -> PatchUsersCustomMetadata
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 PatchUsersCustomMetadata
impl Debug for PatchUsersCustomMetadata
Source§impl<'de> Deserialize<'de> for PatchUsersCustomMetadata
impl<'de> Deserialize<'de> for PatchUsersCustomMetadata
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<&PatchUsersCustomMetadata> for PatchUsersCustomMetadata
impl From<&PatchUsersCustomMetadata> for PatchUsersCustomMetadata
Source§fn from(value: &PatchUsersCustomMetadata) -> Self
fn from(value: &PatchUsersCustomMetadata) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for PatchUsersCustomMetadata
impl RefUnwindSafe for PatchUsersCustomMetadata
impl Send for PatchUsersCustomMetadata
impl Sync for PatchUsersCustomMetadata
impl Unpin for PatchUsersCustomMetadata
impl UnsafeUnpin for PatchUsersCustomMetadata
impl UnwindSafe for PatchUsersCustomMetadata
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