/** * 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 { AccountNamesDTO } from './AccountNamesDTO'; /** * * @export * @interface AccountsNamesDTO */ export interface AccountsNamesDTO { /** * Array of account names. * @type {Array} * @memberof AccountsNamesDTO */ accountNames: Array; } /** * Check if a given object implements the AccountsNamesDTO interface. */ export declare function instanceOfAccountsNamesDTO(value: Record): value is AccountsNamesDTO; export declare function AccountsNamesDTOFromJSON(json: any): AccountsNamesDTO; export declare function AccountsNamesDTOFromJSONTyped(json: any, ignoreDiscriminator: boolean): AccountsNamesDTO; export declare function AccountsNamesDTOToJSON(json: any): AccountsNamesDTO; export declare function AccountsNamesDTOToJSONTyped(value?: AccountsNamesDTO | null, ignoreDiscriminator?: boolean): any;