/** * 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 { NetworkTypeEnum } from './NetworkTypeEnum'; import type { LinkActionEnum } from './LinkActionEnum'; /** * * @export * @interface EmbeddedAccountKeyLinkTransactionDTO */ export interface EmbeddedAccountKeyLinkTransactionDTO { /** * Public key. * @type {string} * @memberof EmbeddedAccountKeyLinkTransactionDTO */ signerPublicKey: string; /** * Entity version. * @type {number} * @memberof EmbeddedAccountKeyLinkTransactionDTO */ version: number; /** * * @type {NetworkTypeEnum} * @memberof EmbeddedAccountKeyLinkTransactionDTO */ network: NetworkTypeEnum; /** * * @type {number} * @memberof EmbeddedAccountKeyLinkTransactionDTO */ type: number; /** * Public key. * @type {string} * @memberof EmbeddedAccountKeyLinkTransactionDTO */ linkedPublicKey: string; /** * * @type {LinkActionEnum} * @memberof EmbeddedAccountKeyLinkTransactionDTO */ linkAction: LinkActionEnum; } /** * Check if a given object implements the EmbeddedAccountKeyLinkTransactionDTO interface. */ export declare function instanceOfEmbeddedAccountKeyLinkTransactionDTO(value: Record): value is EmbeddedAccountKeyLinkTransactionDTO; export declare function EmbeddedAccountKeyLinkTransactionDTOFromJSON(json: any): EmbeddedAccountKeyLinkTransactionDTO; export declare function EmbeddedAccountKeyLinkTransactionDTOFromJSONTyped(json: any, ignoreDiscriminator: boolean): EmbeddedAccountKeyLinkTransactionDTO; export declare function EmbeddedAccountKeyLinkTransactionDTOToJSON(json: any): EmbeddedAccountKeyLinkTransactionDTO; export declare function EmbeddedAccountKeyLinkTransactionDTOToJSONTyped(value?: EmbeddedAccountKeyLinkTransactionDTO | null, ignoreDiscriminator?: boolean): any;