/** * 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 AccountLinkPublicKeyDTO */ export interface AccountLinkPublicKeyDTO { /** * * @type {string} * @memberof AccountLinkPublicKeyDTO */ publicKey: string; } /** * Check if a given object implements the AccountLinkPublicKeyDTO interface. */ export declare function instanceOfAccountLinkPublicKeyDTO(value: Record): value is AccountLinkPublicKeyDTO; export declare function AccountLinkPublicKeyDTOFromJSON(json: any): AccountLinkPublicKeyDTO; export declare function AccountLinkPublicKeyDTOFromJSONTyped(json: any, ignoreDiscriminator: boolean): AccountLinkPublicKeyDTO; export declare function AccountLinkPublicKeyDTOToJSON(json: any): AccountLinkPublicKeyDTO; export declare function AccountLinkPublicKeyDTOToJSONTyped(value?: AccountLinkPublicKeyDTO | null, ignoreDiscriminator?: boolean): any;