/** * Catapult REST Endpoints * OpenAPI Specification of catapult-rest * * The version of the OpenAPI document: 1.0.4 * * * 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 { AccountDTO } from './AccountDTO'; /** * * @export * @interface AccountInfoDTO */ export interface AccountInfoDTO { /** * Internal resource identifier. * @type {string} * @memberof AccountInfoDTO */ id: string; /** * * @type {AccountDTO} * @memberof AccountInfoDTO */ account: AccountDTO; } /** * Check if a given object implements the AccountInfoDTO interface. */ export declare function instanceOfAccountInfoDTO(value: Record): value is AccountInfoDTO; export declare function AccountInfoDTOFromJSON(json: any): AccountInfoDTO; export declare function AccountInfoDTOFromJSONTyped(json: any, ignoreDiscriminator: boolean): AccountInfoDTO; export declare function AccountInfoDTOToJSON(json: any): AccountInfoDTO; export declare function AccountInfoDTOToJSONTyped(value?: AccountInfoDTO | null, ignoreDiscriminator?: boolean): any;