/** * 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 { AccountLinkVotingKeyDTO } from './AccountLinkVotingKeyDTO'; /** * * @export * @interface AccountLinkVotingKeysDTO */ export interface AccountLinkVotingKeysDTO { /** * * @type {Array} * @memberof AccountLinkVotingKeysDTO */ publicKeys: Array; } /** * Check if a given object implements the AccountLinkVotingKeysDTO interface. */ export declare function instanceOfAccountLinkVotingKeysDTO(value: Record): value is AccountLinkVotingKeysDTO; export declare function AccountLinkVotingKeysDTOFromJSON(json: any): AccountLinkVotingKeysDTO; export declare function AccountLinkVotingKeysDTOFromJSONTyped(json: any, ignoreDiscriminator: boolean): AccountLinkVotingKeysDTO; export declare function AccountLinkVotingKeysDTOToJSON(json: any): AccountLinkVotingKeysDTO; export declare function AccountLinkVotingKeysDTOToJSONTyped(value?: AccountLinkVotingKeysDTO | null, ignoreDiscriminator?: boolean): any;