MemberEntity

data class MemberEntity(val personNumber: Int, val seatNumber: Int, val last: String, val first: String, val party: String, val minister: Boolean, val picture: String, val twitter: String, val bornYear: Int, val constituency: String)

Entity representing a member of the Finnish parliament party.

Constructors

Link copied to clipboard
constructor(personNumber: Int, seatNumber: Int, last: String, first: String, party: String, minister: Boolean, picture: String, twitter: String, bornYear: Int, constituency: String)

Properties

Link copied to clipboard

The year the member was born.

Link copied to clipboard

The constituency of the member.

Link copied to clipboard

The first name of the member.

Link copied to clipboard

The last name of the member.

Link copied to clipboard

Whether the member is a minister.

Link copied to clipboard

The party of the member.

Link copied to clipboard

The unique identifier of the member.

Link copied to clipboard

The URL of the member's picture.

Link copied to clipboard

The seat number of the member.

Link copied to clipboard

The Twitter handle of the member.