Forgejo::CommitStatus
Properties
Name |
Type |
Description |
Notes |
context |
String |
|
[optional] |
created_at |
Time |
|
[optional] |
creator |
User |
|
[optional] |
description |
String |
|
[optional] |
id |
Integer |
|
[optional] |
status |
String |
CommitStatusState holds the state of a CommitStatus It can be \“pending\”, \“success\”, \“error\” and \“failure\” |
[optional] |
target_url |
String |
|
[optional] |
updated_at |
Time |
|
[optional] |
url |
String |
|
[optional] |
Example
require 'forgejo'
instance = Forgejo::CommitStatus.new(
context: null,
created_at: null,
creator: null,
description: null,
id: null,
status: null,
target_url: null,
updated_at: null,
url: null
)