/** * 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 { LinkActionEnum } from './LinkActionEnum'; /** * * @export * @interface VotingKeyLinkTransactionBodyDTO */ export interface VotingKeyLinkTransactionBodyDTO { /** * 32 bytes voting public key. * @type {string} * @memberof VotingKeyLinkTransactionBodyDTO */ linkedPublicKey: string; /** * Finalization Epoch * @type {number} * @memberof VotingKeyLinkTransactionBodyDTO */ startEpoch: number; /** * Finalization Epoch * @type {number} * @memberof VotingKeyLinkTransactionBodyDTO */ endEpoch: number; /** * * @type {LinkActionEnum} * @memberof VotingKeyLinkTransactionBodyDTO */ linkAction: LinkActionEnum; } /** * Check if a given object implements the VotingKeyLinkTransactionBodyDTO interface. */ export declare function instanceOfVotingKeyLinkTransactionBodyDTO(value: Record): value is VotingKeyLinkTransactionBodyDTO; export declare function VotingKeyLinkTransactionBodyDTOFromJSON(json: any): VotingKeyLinkTransactionBodyDTO; export declare function VotingKeyLinkTransactionBodyDTOFromJSONTyped(json: any, ignoreDiscriminator: boolean): VotingKeyLinkTransactionBodyDTO; export declare function VotingKeyLinkTransactionBodyDTOToJSON(json: any): VotingKeyLinkTransactionBodyDTO; export declare function VotingKeyLinkTransactionBodyDTOToJSONTyped(value?: VotingKeyLinkTransactionBodyDTO | null, ignoreDiscriminator?: boolean): any;