Interface StatusEvent

    • Method Detail

      • id

        @Nullable
        Long id()
        Status event id
      • sha

        @Nullable
        String sha()
        The Commit SHA.
      • name

        @Nullable
        String name()
        Full repository name. E.g. organization/repo-name
      • targetUrl

        Optional<URI> targetUrl()
        The optional link added to the status.
      • context

        @Nullable
        String context()
        A string label to differentiate this status from the status of other systems. Example: continuous-integration/jenkins Default: "default"
      • description

        @Nullable
        Optional<String> description()
        The optional human-readable description added to the status.
      • state

        @Nullable
        String state()
        The new state. Can be pending, success, failure, or error.
      • commit

        @Nullable
        CommitItem commit()
        Related git commit
      • branches

        @Nullable
        List<Branch> branches()
        An array of branch objects containing the status' SHA. Each branch contains the given SHA, but the SHA may or may not be the head of the branch. The array includes a maximum of 10 branches.