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 StringbadgeUrl()Badge Url string.ZonedDateTimecreatedAt()Created AtZonedDateTimedeletedAt()Deleted AtStringhtmlUrl()Html url string.intid()The Workflow ID.Stringname()Name.StringnodeId()Node IDStringpath()The workflow path.WorkflowsStatestate()Indicates the state of the workflow.ZonedDateTimeupdatedAt()Updated AtStringurl()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
-
-