Package com.spotify.github.v3.workflows
Interface WorkflowsResponse
-
- All Known Implementing Classes:
ImmutableWorkflowsResponse
@Immutable public interface WorkflowsResponse
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
badgeUrl()
Badge Url string.ZonedDateTime
createdAt()
Created AtZonedDateTime
deletedAt()
Deleted AtString
htmlUrl()
Html url string.int
id()
The Workflow ID.String
name()
Name.String
nodeId()
Node IDString
path()
The workflow path.WorkflowsState
state()
Indicates the state of the workflow.ZonedDateTime
updatedAt()
Updated AtString
url()
Url string.
-
-
-
Method Detail
-
id
int id()
The Workflow ID.- Returns:
- the int
-
nodeId
String nodeId()
Node ID
-
name
String name()
Name.
-
path
String path()
The workflow path.
-
state
WorkflowsState state()
Indicates the state of the workflow.
-
createdAt
ZonedDateTime createdAt()
Created At- Returns:
- The time when the workflow was created
-
updatedAt
ZonedDateTime updatedAt()
Updated At- Returns:
- The time when the workflow was updated
-
deletedAt
@Nullable ZonedDateTime deletedAt()
Deleted At- Returns:
- The time when the workflow was deleted
-
url
String url()
Url string.- Returns:
- the string
-
htmlUrl
String htmlUrl()
Html url string.- Returns:
- the string
-
badgeUrl
String badgeUrl()
Badge Url string.- Returns:
- the string
-
-