StakeholderDetailsRequest

@Serializable
data class StakeholderDetailsRequest(val externalId: String? = null, val stakeholderTypes: List<StakeholderTypeModel>? = null, val officerTitles: List<String>? = null, val percentOwnership: Float? = null, val firstName: String? = null, val middleName: String? = null, val lastName: String? = null, val dateOfBirth: String? = null, val primaryAddress: AddressRequest? = null)

Stakeholders of a business account.

Constructors

Link copied to clipboard
constructor(externalId: String? = null, stakeholderTypes: List<StakeholderTypeModel>? = null, officerTitles: List<String>? = null, percentOwnership: Float? = null, firstName: String? = null, middleName: String? = null, lastName: String? = null, dateOfBirth: String? = null, primaryAddress: AddressRequest? = null)

Properties

Link copied to clipboard
@SerialName(value = "date_of_birth")
val dateOfBirth: String? = null

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

Link copied to clipboard
@SerialName(value = "external_id")
val externalId: String? = null

External identifier in your platform.

Link copied to clipboard
@SerialName(value = "first_name")
val firstName: String? = null

User first name.

Link copied to clipboard
@SerialName(value = "last_name")
val lastName: String? = null

User last name.

Link copied to clipboard
@SerialName(value = "middle_name")
val middleName: String? = null

User middle name.

Link copied to clipboard
@SerialName(value = "officer_titles")
val officerTitles: List<String>? = null

The job titles for stakeholder type StakeholderTypeModel.OFFICER.

Link copied to clipboard
@SerialName(value = "percent_ownership")
val percentOwnership: Float? = null

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

Link copied to clipboard
@SerialName(value = "primary_address")
val primaryAddress: AddressRequest? = null

The Primary address for this stakeholder.

Link copied to clipboard
@SerialName(value = "stakeholder_types")
val stakeholderTypes: List<StakeholderTypeModel>? = null

The stakeholder types.