pub struct ReactionCreateInput {
pub id: Option<String>,
pub emoji: Option<String>,
pub comment_id: Option<String>,
pub project_update_id: Option<String>,
pub initiative_update_id: Option<String>,
pub issue_id: Option<String>,
pub post_id: Option<String>,
pub pull_request_id: Option<String>,
pub pull_request_comment_id: Option<String>,
}Fields§
§id: Option<String>The identifier in UUID v4 format. If none is provided, the backend will generate one.
emoji: Option<String>The emoji the user reacted with.
comment_id: Option<String>The comment to associate the reaction with.
project_update_id: Option<String>The project update to associate the reaction with.
initiative_update_id: Option<String>The update to associate the reaction with.
issue_id: Option<String>The issue to associate the reaction with. Can be a UUID or issue identifier (e.g., ‘LIN-123’).
post_id: Option<String>Internal The post to associate the reaction with.
pull_request_id: Option<String>Internal The pull request to associate the reaction with.
pull_request_comment_id: Option<String>Internal The pull request comment to associate the reaction with.
Trait Implementations§
Source§impl Clone for ReactionCreateInput
impl Clone for ReactionCreateInput
Source§fn clone(&self) -> ReactionCreateInput
fn clone(&self) -> ReactionCreateInput
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 ReactionCreateInput
impl Debug for ReactionCreateInput
Source§impl Default for ReactionCreateInput
impl Default for ReactionCreateInput
Source§fn default() -> ReactionCreateInput
fn default() -> ReactionCreateInput
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ReactionCreateInput
impl<'de> Deserialize<'de> for ReactionCreateInput
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
Auto Trait Implementations§
impl Freeze for ReactionCreateInput
impl RefUnwindSafe for ReactionCreateInput
impl Send for ReactionCreateInput
impl Sync for ReactionCreateInput
impl Unpin for ReactionCreateInput
impl UnwindSafe for ReactionCreateInput
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