Stakeholder Details Request
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
User date of birth in the format "yyyy-mm-dd".
Link copied to clipboard
External identifier in your platform.
Link copied to clipboard
User middle name.
Link copied to clipboard
The job titles for stakeholder type StakeholderTypeModel.OFFICER.
Link copied to clipboard
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.