PostCommentReplyInput

public struct PostCommentReplyInput : AWSShape

Undocumented

  • Declaration

    Swift

    public static var _members: [AWSShapeMember]
  • 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.

    Declaration

    Swift

    public let clientRequestToken: String?
  • The contents of your reply to a comment.

    Declaration

    Swift

    public let content: String
  • The system-generated ID of the comment to which you want to reply. To get this ID, use GetCommentsForComparedCommit or GetCommentsForPullRequest.

    Declaration

    Swift

    public let inReplyTo: String
  • Undocumented

    Declaration

    Swift

    public init(clientRequestToken: String? = PostCommentReplyInput.idempotencyToken(), content: String, inReplyTo: String)