/** * Lemonway DirectKit API 2.0 * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: v2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ /** * * @export * @interface UpdateUltimateBeneficialOwnerInput */ export interface UpdateUltimateBeneficialOwnerInput { /** * Client First Name * @type {string} * @memberof UpdateUltimateBeneficialOwnerInput */ firstName: string; /** * Client Last Name * @type {string} * @memberof UpdateUltimateBeneficialOwnerInput */ lastName: string; /** * Client Nationality (use ISO 3166-1 alpha-3 format) * @type {string} * @memberof UpdateUltimateBeneficialOwnerInput */ nationality?: string; /** * Client Birthdate * @type {string} * @memberof UpdateUltimateBeneficialOwnerInput */ dateOfBirth: string; /** * Client City of Birth * @type {string} * @memberof UpdateUltimateBeneficialOwnerInput */ cityOfBirth: string; /** * Client Country of Birth (use ISO 3166-1 alpha-3 format) * @type {string} * @memberof UpdateUltimateBeneficialOwnerInput */ countryOfBirth: string; /** * Country of Residence (use ISO 3166-1 alpha-3 format) * @type {string} * @memberof UpdateUltimateBeneficialOwnerInput */ countryOfResidence?: string; /** * Indicate if the UBO is active or not * @type {boolean} * @memberof UpdateUltimateBeneficialOwnerInput */ isActive?: boolean; } /** * Check if a given object implements the UpdateUltimateBeneficialOwnerInput interface. */ export declare function instanceOfUpdateUltimateBeneficialOwnerInput(value: object): boolean; export declare function UpdateUltimateBeneficialOwnerInputFromJSON(json: any): UpdateUltimateBeneficialOwnerInput; export declare function UpdateUltimateBeneficialOwnerInputFromJSONTyped(json: any, ignoreDiscriminator: boolean): UpdateUltimateBeneficialOwnerInput; export declare function UpdateUltimateBeneficialOwnerInputToJSON(value?: UpdateUltimateBeneficialOwnerInput | null): any;