/** * 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 AddUltimateBeneficialOwnerInput */ export interface AddUltimateBeneficialOwnerInput { /** * Client First Name * @type {string} * @memberof AddUltimateBeneficialOwnerInput */ firstName: string; /** * Client Last Name * @type {string} * @memberof AddUltimateBeneficialOwnerInput */ lastName: string; /** * Client Nationality (use ISO 3166-1 alpha-3 format) * @type {string} * @memberof AddUltimateBeneficialOwnerInput */ nationality?: string; /** * Client Birthdate * @type {string} * @memberof AddUltimateBeneficialOwnerInput */ dateOfBirth: string; /** * Client City of Birth * @type {string} * @memberof AddUltimateBeneficialOwnerInput */ cityOfBirth: string; /** * Client Country of Birth (use ISO 3166-1 alpha-3 format) * @type {string} * @memberof AddUltimateBeneficialOwnerInput */ countryOfBirth: string; /** * Country of Residence (use ISO 3166-1 alpha-3 format) * @type {string} * @memberof AddUltimateBeneficialOwnerInput */ countryOfResidence?: string; } /** * Check if a given object implements the AddUltimateBeneficialOwnerInput interface. */ export declare function instanceOfAddUltimateBeneficialOwnerInput(value: object): boolean; export declare function AddUltimateBeneficialOwnerInputFromJSON(json: any): AddUltimateBeneficialOwnerInput; export declare function AddUltimateBeneficialOwnerInputFromJSONTyped(json: any, ignoreDiscriminator: boolean): AddUltimateBeneficialOwnerInput; export declare function AddUltimateBeneficialOwnerInputToJSON(value?: AddUltimateBeneficialOwnerInput | null): any;