CommentsForComparedCommit

public struct CommentsForComparedCommit : AWSShape

Undocumented

  • Declaration

    Swift

    public static var _members: [AWSShapeMember]
  • The full blob ID of the commit used to establish the after of the comparison.

    Declaration

    Swift

    public let afterBlobId: String?
  • The full commit ID of the commit used to establish the after of the comparison.

    Declaration

    Swift

    public let afterCommitId: String?
  • The full blob ID of the commit used to establish the before of the comparison.

    Declaration

    Swift

    public let beforeBlobId: String?
  • The full commit ID of the commit used to establish the before of the comparison.

    Declaration

    Swift

    public let beforeCommitId: String?
  • An array of comment objects. Each comment object contains information about a comment on the comparison between commits.

    Declaration

    Swift

    public let comments: [Comment]?
  • Location information about the comment on the comparison, including the file name, line number, and whether the version of the file where the comment was made is BEFORE or AFTER.

    Declaration

    Swift

    public let location: Location?
  • The name of the repository that contains the compared commits.

    Declaration

    Swift

    public let repositoryName: String?
  • Undocumented

    Declaration

    Swift

    public init(afterBlobId: String? = nil, afterCommitId: String? = nil, beforeBlobId: String? = nil, beforeCommitId: String? = nil, comments: [Comment]? = nil, location: Location? = nil, repositoryName: String? = nil)