/** * 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 AccountKeyLinkTransactionBodyDTO */ export interface AccountKeyLinkTransactionBodyDTO { /** * Public key. * @type {string} * @memberof AccountKeyLinkTransactionBodyDTO */ linkedPublicKey: string; /** * * @type {LinkActionEnum} * @memberof AccountKeyLinkTransactionBodyDTO */ linkAction: LinkActionEnum; } /** * Check if a given object implements the AccountKeyLinkTransactionBodyDTO interface. */ export declare function instanceOfAccountKeyLinkTransactionBodyDTO(value: Record): value is AccountKeyLinkTransactionBodyDTO; export declare function AccountKeyLinkTransactionBodyDTOFromJSON(json: any): AccountKeyLinkTransactionBodyDTO; export declare function AccountKeyLinkTransactionBodyDTOFromJSONTyped(json: any, ignoreDiscriminator: boolean): AccountKeyLinkTransactionBodyDTO; export declare function AccountKeyLinkTransactionBodyDTOToJSON(json: any): AccountKeyLinkTransactionBodyDTO; export declare function AccountKeyLinkTransactionBodyDTOToJSONTyped(value?: AccountKeyLinkTransactionBodyDTO | null, ignoreDiscriminator?: boolean): any;