struct IssuePayload
- IssuePayload
- Struct
- Value
- Object
Included Modules
- JSON::Serializable
Defined in:
githubcr/payloads/issue.crConstructors
- .new(title : String, body : String | Nil = nil, assignees : Array(String) | Nil = nil, milestone : Int32 | Nil = 0, labels : Array(String) | Nil = [] of String)
- .new(pull : JSON::PullParser)
Instance Method Summary
- #assignees : Array(String) | Nil
- #body : String | Nil
- #clone
- #copy_with(title _title = @title, body _body = @body, assignees _assignees = @assignees, milestone _milestone = @milestone, labels _labels = @labels)
- #labels : Array(String) | Nil
- #milestone : Int32 | Nil
- #title : String
Constructor Detail
def self.new(title : String, body : String | Nil = nil, assignees : Array(String) | Nil = nil, milestone : Int32 | Nil = 0, labels : Array(String) | Nil = [] of String)
#
Instance Method Detail
def copy_with(title _title = @title, body _body = @body, assignees _assignees = @assignees, milestone _milestone = @milestone, labels _labels = @labels)
#