File tree Expand file tree Collapse file tree
GithubAPI/Classes/IssuesAPI/Models/CreateIssue Expand file tree Collapse file tree Original file line number Diff line number Diff line change 88
99Pod ::Spec . new do |s |
1010 s . name = 'GithubAPI'
11- s . version = '0.0.1 '
11+ s . version = '0.0.2 '
1212 s . summary = 'Swift implementation of Github REST api v3'
1313
1414# This description is used to generate tags and improve search results.
Original file line number Diff line number Diff line change 88import Foundation
99
1010public struct Issue : Codable {
11- public let assignees : [ String ] ?
12- public let body : String ?
13- public let labels : [ String ] ?
14- public let milestone : Int ?
15- public let title : String ?
11+ public var assignees : [ String ] ?
12+ public var body : String ?
13+ public var labels : [ String ] ?
14+ public var milestone : Int ?
15+ public var title : String ?
1616
1717 enum CodingKeys : String , CodingKey {
1818 case assignees = " assignees "
You can’t perform that action at this time.
0 commit comments