/** * 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 VrfKeyLinkTransactionBodyDTO */ export interface VrfKeyLinkTransactionBodyDTO { /** * Public key. * @type {string} * @memberof VrfKeyLinkTransactionBodyDTO */ linkedPublicKey: string; /** * * @type {LinkActionEnum} * @memberof VrfKeyLinkTransactionBodyDTO */ linkAction: LinkActionEnum; } /** * Check if a given object implements the VrfKeyLinkTransactionBodyDTO interface. */ export declare function instanceOfVrfKeyLinkTransactionBodyDTO(value: Record): value is VrfKeyLinkTransactionBodyDTO; export declare function VrfKeyLinkTransactionBodyDTOFromJSON(json: any): VrfKeyLinkTransactionBodyDTO; export declare function VrfKeyLinkTransactionBodyDTOFromJSONTyped(json: any, ignoreDiscriminator: boolean): VrfKeyLinkTransactionBodyDTO; export declare function VrfKeyLinkTransactionBodyDTOToJSON(json: any): VrfKeyLinkTransactionBodyDTO; export declare function VrfKeyLinkTransactionBodyDTOToJSONTyped(value?: VrfKeyLinkTransactionBodyDTO | null, ignoreDiscriminator?: boolean): any;