/** * 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. */ /** * * @export * @interface AccountLinkVotingKeyDTO */ export interface AccountLinkVotingKeyDTO { /** * * @type {string} * @memberof AccountLinkVotingKeyDTO */ publicKey: string; /** * Finalization Epoch * @type {number} * @memberof AccountLinkVotingKeyDTO */ startEpoch: number; /** * Finalization Epoch * @type {number} * @memberof AccountLinkVotingKeyDTO */ endEpoch: number; } /** * Check if a given object implements the AccountLinkVotingKeyDTO interface. */ export declare function instanceOfAccountLinkVotingKeyDTO(value: Record): value is AccountLinkVotingKeyDTO; export declare function AccountLinkVotingKeyDTOFromJSON(json: any): AccountLinkVotingKeyDTO; export declare function AccountLinkVotingKeyDTOFromJSONTyped(json: any, ignoreDiscriminator: boolean): AccountLinkVotingKeyDTO; export declare function AccountLinkVotingKeyDTOToJSON(json: any): AccountLinkVotingKeyDTO; export declare function AccountLinkVotingKeyDTOToJSONTyped(value?: AccountLinkVotingKeyDTO | null, ignoreDiscriminator?: boolean): any;