Person
public struct Person : Equatable, CodableModel
-
Person id, eg. satoshi-nakamoto
Declaration
Swift
public let id: String -
Person name, eg. Satoshi Nakamoto
Declaration
Swift
public let name: String -
Person description
Declaration
Swift
public let description: String? -
Number of teams/projects in which this person is involved
Declaration
Swift
public let teamsCount: Int -
Person position in project
See moreDeclaration
Swift
public struct Project : Codable, Equatable -
Position per projects
Declaration
Swift
public let positions: [Project] -
Links with popularity
See moreDeclaration
Swift
public struct Link : Codable, Equatable -
Declaration
Swift
public struct Links : Codable, Equatable -
Declaration
Swift
public let links: Links
Person Structure Reference