/** * 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 AddUltimateBeneficialOwnerOutput */ export interface AddUltimateBeneficialOwnerOutput { /** * * @type {number} * @memberof AddUltimateBeneficialOwnerOutput */ ultimateBeneficialOwnerId?: number; /** * * @type {Error} * @memberof AddUltimateBeneficialOwnerOutput */ error?: Error; } /** * Check if a given object implements the AddUltimateBeneficialOwnerOutput interface. */ export declare function instanceOfAddUltimateBeneficialOwnerOutput(value: object): boolean; export declare function AddUltimateBeneficialOwnerOutputFromJSON(json: any): AddUltimateBeneficialOwnerOutput; export declare function AddUltimateBeneficialOwnerOutputFromJSONTyped(json: any, ignoreDiscriminator: boolean): AddUltimateBeneficialOwnerOutput; export declare function AddUltimateBeneficialOwnerOutputToJSON(value?: AddUltimateBeneficialOwnerOutput | null): any;