pub struct GetCommentFluentBuilder { /* private fields */ }
Expand description
Fluent builder constructing a request to GetComment
.
Returns the content of a comment made on a change, file, or commit in a repository.
Reaction counts might include numbers from user identities who were deleted after the reaction was made. For a count of reactions from active identities, use GetCommentReactions.
Implementations§
source§impl GetCommentFluentBuilder
impl GetCommentFluentBuilder
sourcepub fn as_input(&self) -> &GetCommentInputBuilder
pub fn as_input(&self) -> &GetCommentInputBuilder
Access the GetComment as a reference.
sourcepub async fn send(
self
) -> Result<GetCommentOutput, SdkError<GetCommentError, HttpResponse>>
pub async fn send( self ) -> Result<GetCommentOutput, SdkError<GetCommentError, HttpResponse>>
Sends the request and returns the response.
If an error occurs, an SdkError
will be returned with additional details that
can be matched against.
By default, any retryable failures will be retried twice. Retry behavior is configurable with the RetryConfig, which can be set when configuring the client.
sourcepub fn customize(
self
) -> CustomizableOperation<GetCommentOutput, GetCommentError, Self>
pub fn customize( self ) -> CustomizableOperation<GetCommentOutput, GetCommentError, Self>
Consumes this builder, creating a customizable operation that can be modified before being sent.
sourcepub fn comment_id(self, input: impl Into<String>) -> Self
pub fn comment_id(self, input: impl Into<String>) -> Self
The unique, system-generated ID of the comment. To get this ID, use GetCommentsForComparedCommit
or GetCommentsForPullRequest
.
sourcepub fn set_comment_id(self, input: Option<String>) -> Self
pub fn set_comment_id(self, input: Option<String>) -> Self
The unique, system-generated ID of the comment. To get this ID, use GetCommentsForComparedCommit
or GetCommentsForPullRequest
.
sourcepub fn get_comment_id(&self) -> &Option<String>
pub fn get_comment_id(&self) -> &Option<String>
The unique, system-generated ID of the comment. To get this ID, use GetCommentsForComparedCommit
or GetCommentsForPullRequest
.
Trait Implementations§
source§impl Clone for GetCommentFluentBuilder
impl Clone for GetCommentFluentBuilder
source§fn clone(&self) -> GetCommentFluentBuilder
fn clone(&self) -> GetCommentFluentBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more