pub struct SetUserPropertyParams {
pub property_key: String,
pub body: Option<Value>,
pub account_id: Option<String>,
pub user_key: Option<String>,
pub username: Option<String>,
}Expand description
struct for passing parameters to the method set_user_property
Fields§
§property_key: StringThe key of the user’s property. The maximum length is 255 characters.
body: Option<Value>§account_id: Option<String>The account ID of the user, which uniquely identifies the user across all Atlassian products. For example, 5b10ac8d82e05b22cc7d4ef5.
user_key: Option<String>This parameter is no longer available and will be removed from the documentation soon. See the deprecation notice for details.
username: Option<String>This parameter is no longer available and will be removed from the documentation soon. See the deprecation notice for details.
Trait Implementations§
Source§impl Clone for SetUserPropertyParams
impl Clone for SetUserPropertyParams
Source§fn clone(&self) -> SetUserPropertyParams
fn clone(&self) -> SetUserPropertyParams
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 Debug for SetUserPropertyParams
impl Debug for SetUserPropertyParams
Source§impl Default for SetUserPropertyParams
impl Default for SetUserPropertyParams
Source§fn default() -> SetUserPropertyParams
fn default() -> SetUserPropertyParams
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for SetUserPropertyParams
impl RefUnwindSafe for SetUserPropertyParams
impl Send for SetUserPropertyParams
impl Sync for SetUserPropertyParams
impl Unpin for SetUserPropertyParams
impl UnwindSafe for SetUserPropertyParams
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