/** * 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. */ import type { UltimateBeneficialOwner } from './UltimateBeneficialOwner'; /** * * @export * @interface GetUltimateBeneficialOwnerOutput */ export interface GetUltimateBeneficialOwnerOutput { /** * * @type {Array} * @memberof GetUltimateBeneficialOwnerOutput */ ultimateBeneficialOwners?: Array; /** * * @type {Error} * @memberof GetUltimateBeneficialOwnerOutput */ error?: Error; } /** * Check if a given object implements the GetUltimateBeneficialOwnerOutput interface. */ export declare function instanceOfGetUltimateBeneficialOwnerOutput(value: object): boolean; export declare function GetUltimateBeneficialOwnerOutputFromJSON(json: any): GetUltimateBeneficialOwnerOutput; export declare function GetUltimateBeneficialOwnerOutputFromJSONTyped(json: any, ignoreDiscriminator: boolean): GetUltimateBeneficialOwnerOutput; export declare function GetUltimateBeneficialOwnerOutputToJSON(value?: GetUltimateBeneficialOwnerOutput | null): any;