#[non_exhaustive]pub struct PostCommentReplyInput {
pub in_reply_to: Option<String>,
pub client_request_token: Option<String>,
pub content: Option<String>,
}Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.in_reply_to: Option<String>The system-generated ID of the comment to which you want to reply. To get this ID, use GetCommentsForComparedCommit or GetCommentsForPullRequest.
client_request_token: Option<String>A unique, client-generated idempotency token that, when provided in a request, ensures the request cannot be repeated with a changed parameter. If a request is received with the same parameters and a token is included, the request returns information about the initial request that used that token.
content: Option<String>The contents of your reply to a comment.
Implementations§
source§impl PostCommentReplyInput
impl PostCommentReplyInput
sourcepub fn in_reply_to(&self) -> Option<&str>
pub fn in_reply_to(&self) -> Option<&str>
The system-generated ID of the comment to which you want to reply. To get this ID, use GetCommentsForComparedCommit or GetCommentsForPullRequest.
sourcepub fn client_request_token(&self) -> Option<&str>
pub fn client_request_token(&self) -> Option<&str>
A unique, client-generated idempotency token that, when provided in a request, ensures the request cannot be repeated with a changed parameter. If a request is received with the same parameters and a token is included, the request returns information about the initial request that used that token.
source§impl PostCommentReplyInput
impl PostCommentReplyInput
sourcepub fn builder() -> PostCommentReplyInputBuilder
pub fn builder() -> PostCommentReplyInputBuilder
Creates a new builder-style object to manufacture PostCommentReplyInput.
Trait Implementations§
source§impl Clone for PostCommentReplyInput
impl Clone for PostCommentReplyInput
source§fn clone(&self) -> PostCommentReplyInput
fn clone(&self) -> PostCommentReplyInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for PostCommentReplyInput
impl Debug for PostCommentReplyInput
source§impl PartialEq<PostCommentReplyInput> for PostCommentReplyInput
impl PartialEq<PostCommentReplyInput> for PostCommentReplyInput
source§fn eq(&self, other: &PostCommentReplyInput) -> bool
fn eq(&self, other: &PostCommentReplyInput) -> bool
self and other values to be equal, and is used
by ==.