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