StakeholderDetailsRequest

data class StakeholderDetailsRequest(@Json(name = "external_id") val externalId: String? = null, @Json(name = "stakeholder_types") val stakeholderTypes: List<StakeholderTypeModel>? = null, @Json(name = "officer_titles") val officerTitles: List<String>? = null, @Json(name = "percent_ownership") val percentOwnership: Float? = null, @Json(name = "first_name") val firstName: String? = null, @Json(name = "middle_name") val middleName: String? = null, @Json(name = "last_name") val lastName: String? = null, @Json(name = "date_of_birth") val dateOfBirth: String? = null, @Json(name = "primary_address") val primaryAddress: AddressRequest? = null)

Stakeholders of a business account.

Constructors

Link copied to clipboard
constructor(@Json(name = "external_id") externalId: String? = null, @Json(name = "stakeholder_types") stakeholderTypes: List<StakeholderTypeModel>? = null, @Json(name = "officer_titles") officerTitles: List<String>? = null, @Json(name = "percent_ownership") percentOwnership: Float? = null, @Json(name = "first_name") firstName: String? = null, @Json(name = "middle_name") middleName: String? = null, @Json(name = "last_name") lastName: String? = null, @Json(name = "date_of_birth") dateOfBirth: String? = null, @Json(name = "primary_address") primaryAddress: AddressRequest? = null)

Properties

Link copied to clipboard
val dateOfBirth: String? = null

User date of birth in the format "yyyy-mm-dd".

Link copied to clipboard
val externalId: String? = null

External identifier in your platform.

Link copied to clipboard
val firstName: String? = null

User first name.

Link copied to clipboard
val lastName: String? = null

User last name.

Link copied to clipboard
val middleName: String? = null

User middle name.

Link copied to clipboard
val officerTitles: List<String>? = null

The job titles for stakeholder type StakeholderTypeModel.OFFICER.

Link copied to clipboard
val percentOwnership: Float? = null

The percentage ownership in the company for type StakeholderTypeModel.BENEFICIAL_OWNER.

Link copied to clipboard

The Primary address for this stakeholder.

Link copied to clipboard

The stakeholder types.